summaryrefslogtreecommitdiff
path: root/shared/localization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:10:11 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:10:11 +0200
commitc0cdb2ad99a1e2a6ade5ce76c91177a79258e669 (patch)
tree4701a015385d9a6a5a4ba99a8f1f5d400fff26b1 /shared/localization.h
parent3.13 (diff)
downloadFreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.tar.gz
FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.tar.bz2
FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.zip
3.14
Diffstat (limited to 'shared/localization.h')
-rw-r--r--shared/localization.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/localization.h b/shared/localization.h
index 40d71423..3ce7bf24 100644
--- a/shared/localization.h
+++ b/shared/localization.h
@@ -23,7 +23,7 @@ wxString getDecimalPoint();
struct LocInfoLine
{
- int languageID;
+ wxLanguage languageID;
wxString languageName;
wxString languageFile;
wxString translatorName;
@@ -63,7 +63,7 @@ private:
~CustomLocale(); //non-inline destructor for std::auto_ptr to work with forward declaration -> superfluous in this case: singleton pattern!
std::auto_ptr<Translation> translationDB; //careful with forward-declarations and auto_ptr! save in this case, 'cause full class info available
- int currentLanguage;
+ wxLanguage currentLanguage;
};
}
bgstack15