diff options
Diffstat (limited to 'Application.h')
-rw-r--r-- | Application.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Application.h b/Application.h index cf6d6dd4..55d6e02d 100644 --- a/Application.h +++ b/Application.h @@ -9,7 +9,6 @@ #define FREEFILESYNCAPP_H #include <wx/app.h> -#include "library/localization.h" #include "library/processXml.h" @@ -23,12 +22,12 @@ public: void OnStartApplication(wxIdleEvent& event); private: - void runBatchMode(const wxString& filename, xmlAccess::XmlGlobalSettings& globalSettings); + void runGuiMode(const wxString& cfgFileName, xmlAccess::XmlGlobalSettings& settings); + void runBatchMode(const wxString& filename, xmlAccess::XmlGlobalSettings& globSettings); - FreeFileSync::CustomLocale programLanguage; + xmlAccess::XmlGlobalSettings globalSettings; //settings used by GUI, batch mode or both int returnValue; - xmlAccess::XmlGlobalSettings globalSettings; //settings used by GUI, batch mode or both }; #endif // FREEFILESYNCAPP_H |