summaryrefslogtreecommitdiff
path: root/shared/localization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
commit618dfb51d93898632830f1b87443d3f748780871 (patch)
treebac520a2e261154f8d35b0cb8aa345f5ab373811 /shared/localization.h
parent3.4 (diff)
downloadFreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip
3.5
Diffstat (limited to 'shared/localization.h')
-rw-r--r--shared/localization.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/shared/localization.h b/shared/localization.h
index 157969cf..1e4cb6ed 100644
--- a/shared/localization.h
+++ b/shared/localization.h
@@ -16,10 +16,9 @@ class Translation;
namespace FreeFileSync
{
-//language dependent global variables: need to be initialized by CustomLocale on program startup and language switch
-
-extern const wxChar* THOUSANDS_SEPARATOR;
-extern const wxChar* DECIMAL_POINT;
+//language independent global variables: just use operating system's default setting!
+wxString getThousandsSeparator();
+wxString getDecimalPoint();
struct LocInfoLine
bgstack15