From fa9edc1e1656e737b9194e54e06043473cad3622 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Wed, 10 Aug 2016 23:08:11 +0100 Subject: [PATCH] Moved headers inside the inclusion guard --- source/common/dirs.h | 4 ++-- source/import/import.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/common/dirs.h b/source/common/dirs.h index 0640c95..120121d 100644 --- a/source/common/dirs.h +++ b/source/common/dirs.h @@ -16,11 +16,11 @@ // You should have received a copy of the GNU General Public License along // with Xestia Address Book. If not, see -#include - #ifndef DIRS_H #define DIRS_H +#include + wxString GetUserDir(); wxString GetUserPrefDir(); wxString GetRecoveryDB(); diff --git a/source/import/import.h b/source/import/import.h index 09bd1cf..625c50c 100644 --- a/source/import/import.h +++ b/source/import/import.h @@ -16,14 +16,14 @@ // You should have received a copy of the GNU General Public License along // with Xestia Address Book. If not, see +#ifndef IMPORT_IMPORT_H +#define IMPORT_IMPORT_H + #include #include #include "../frmMain.h" -#ifndef IMPORT_IMPORT_H -#define IMPORT_IMPORT_H - void ImportRun(frmMain *frmMainPtrInc); #endif -- 2.39.2