summaryrefslogtreecommitdiff
path: root/shared/localization.h
diff options
context:
space:
mode:
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