diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:54:32 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:54:32 +0200 |
commit | cbb59ba3fb48fb87065469eaa1b4a34a18851b9e (patch) | |
tree | 6f43ab99e0f22a33fccb941ab0441d1bee38adf9 /library/misc.h | |
parent | 1.11 (diff) | |
download | FreeFileSync-cbb59ba3fb48fb87065469eaa1b4a34a18851b9e.tar.gz FreeFileSync-cbb59ba3fb48fb87065469eaa1b4a34a18851b9e.tar.bz2 FreeFileSync-cbb59ba3fb48fb87065469eaa1b4a34a18851b9e.zip |
1.12
Diffstat (limited to 'library/misc.h')
-rw-r--r-- | library/misc.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/library/misc.h b/library/misc.h index 68a5db68..5fa2c943 100644 --- a/library/misc.h +++ b/library/misc.h @@ -4,6 +4,7 @@ #include <wx/string.h> #include <set> #include <wx/intl.h> +#include <wx/panel.h> using namespace std; @@ -32,12 +33,9 @@ class CustomLocale : public wxLocale { public: CustomLocale(); + ~CustomLocale() {} - ~CustomLocale(); - - void loadLanguageFromCfg(); - - void loadLanguageFile(int language); + void setLanguage(const int language); int getLanguage() { @@ -53,4 +51,5 @@ private: int currentLanguage; }; + #endif // MISC_H_INCLUDED |