summaryrefslogtreecommitdiff
path: root/library/processXml.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:48 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:48 +0200
commitdaea231de0ae28fc8343f29f09d0457cc0591461 (patch)
treea1d572442d2c903e40741a859ad47c8b0d740969 /library/processXml.h
parent1.13 (diff)
downloadFreeFileSync-daea231de0ae28fc8343f29f09d0457cc0591461.tar.gz
FreeFileSync-daea231de0ae28fc8343f29f09d0457cc0591461.tar.bz2
FreeFileSync-daea231de0ae28fc8343f29f09d0457cc0591461.zip
1.14
Diffstat (limited to 'library/processXml.h')
-rw-r--r--library/processXml.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/library/processXml.h b/library/processXml.h
index e359e7b0..bc81556e 100644
--- a/library/processXml.h
+++ b/library/processXml.h
@@ -3,7 +3,6 @@
#include "../FreeFileSync.h"
#include "tinyxml/tinyxml.h"
-#include <wx/intl.h>
using namespace FreeFileSync;
@@ -42,13 +41,14 @@ namespace xmlAccess
bool silent;
};
+ int retrieveSystemLanguage();
struct XmlGlobalSettings
{
struct _Global
{
_Global() :
- programLanguage(wxLocale::GetSystemLanguage()),
+ programLanguage(retrieveSystemLanguage()),
#ifdef FFS_WIN
dstCheckActive(true),
#endif
@@ -77,6 +77,8 @@ namespace xmlAccess
bool isMaximized;
vector<int> columnWidthLeft;
vector<int> columnWidthRight;
+ vector<int> columnPositionsLeft;
+ vector<int> columnPositionsRight;
} gui;
//struct _Batch
bgstack15