]> git.siccegge.de Git - frida/frida.git/commitdiff
Add missing Include-Guards to dialogs
authorChristoph Egger <christoph@christoph-egger.org>
Sun, 24 May 2015 23:54:16 +0000 (01:54 +0200)
committerChristoph Egger <christoph@christoph-egger.org>
Sun, 24 May 2015 23:55:58 +0000 (01:55 +0200)
src/gui/dialogs/NewFunctionDialog.hxx
src/gui/dialogs/SimpleStringDialog.hxx

index b89c38eb8447cac6b6fe8528ff3963a2a337836d..44ad2f86e26fe4fdb46ebfa4eb408b3cffb8872f 100644 (file)
@@ -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 */
index fafab905e3b94be75505b19c409aa1d5c3532733..9d693c2fc27888384c64d07feac80583da39508d 100644 (file)
@@ -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 */