From: Steve Brokenshire Date: Wed, 10 Aug 2016 22:08:11 +0000 (+0100) Subject: Moved headers inside the inclusion guard X-Git-Tag: release-0.15~30 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=fa9edc1e1656e737b9194e54e06043473cad3622 Moved headers inside the inclusion guard --- 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