From: Christoph Egger Date: Sun, 24 May 2015 23:54:16 +0000 (+0200) Subject: Add missing Include-Guards to dialogs X-Git-Tag: v0.2~19 X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=commitdiff_plain;h=23192c72ac7ae34084badf4bcf727a93df0597dd Add missing Include-Guards to dialogs --- diff --git a/src/gui/dialogs/NewFunctionDialog.hxx b/src/gui/dialogs/NewFunctionDialog.hxx index b89c38e..44ad2f8 100644 --- a/src/gui/dialogs/NewFunctionDialog.hxx +++ b/src/gui/dialogs/NewFunctionDialog.hxx @@ -1,3 +1,5 @@ +#ifndef INCLUDE__NewFunctionDialog_hxx +#define INCLUDE__NewFunctionDialog_hxx #include "qt.hxx" @@ -10,3 +12,5 @@ public: private: QLineEdit * edit; }; + +#endif /* INCLUDE__NewFunctionDialog_hxx */ diff --git a/src/gui/dialogs/SimpleStringDialog.hxx b/src/gui/dialogs/SimpleStringDialog.hxx index fafab90..9d693c2 100644 --- a/src/gui/dialogs/SimpleStringDialog.hxx +++ b/src/gui/dialogs/SimpleStringDialog.hxx @@ -1,3 +1,5 @@ +#ifndef INCLUDE__SimpleStringDialog_hxx +#define INCLUDE__SimpleStringDialog_hxx #include "qt.hxx" @@ -10,3 +12,5 @@ public: private: QLineEdit * edit; }; + +#endif /* INCLUDE__SimpleStringDialog_hxx */