From 23192c72ac7ae34084badf4bcf727a93df0597dd Mon Sep 17 00:00:00 2001 From: Christoph Egger Date: Mon, 25 May 2015 01:54:16 +0200 Subject: [PATCH] Add missing Include-Guards to dialogs --- src/gui/dialogs/NewFunctionDialog.hxx | 4 ++++ src/gui/dialogs/SimpleStringDialog.hxx | 4 ++++ 2 files changed, 8 insertions(+) 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 */ -- 2.39.2