summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Application.h b/Application.h
index 8287b9be..cf69890d 100644
--- a/Application.h
+++ b/Application.h
@@ -24,6 +24,12 @@ private:
void runGuiMode(const wxString& cfgFileName, xmlAccess::XmlGlobalSettings& settings);
void runBatchMode(const wxString& filename, xmlAccess::XmlGlobalSettings& globSettings);
+ virtual wxLayoutDirection GetLayoutDirection() const //disable RTL languages for now...
+ {
+ return wxLayout_LeftToRight;
+ }
+
+
xmlAccess::XmlGlobalSettings globalSettings; //settings used by GUI, batch mode or both
int returnValue;
};
bgstack15