summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2021-05-24 12:57:21 +0200
committerJean-Pierre Ledure <jp@ledure.be>2021-05-24 15:53:25 +0200
commit024a11fee38492b8e76917ad5e9f5b0b26f46313 (patch)
tree1eb7c0395a0cc6ff3a060f2f591e251cb1433b8c /wizards
parent0a3aa3f3c9b8b160dedd678dcfbca38b2f128c38 (diff)
ScriptForge - (scriptforge.py.SF_Basic): methods in alphabatical order
GetSystemTicks() and GetPathSeparator() are inverted Change-Id: I7e5c14041d6c70fe0a47519c93a24360ccc2d162 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116048 Tested-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/scriptforge/python/scriptforge.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/source/scriptforge/python/scriptforge.py b/wizards/source/scriptforge/python/scriptforge.py
index 39eb548032cf..c545fc5491c2 100644
--- a/wizards/source/scriptforge/python/scriptforge.py
+++ b/wizards/source/scriptforge/python/scriptforge.py
@@ -739,13 +739,13 @@ class SFScriptForge:
return cls.SIMPLEEXEC(cls.module + '.PyGetGuiType')
@classmethod
- def GetSystemTicks(cls):
- return cls.SIMPLEEXEC(cls.module + '.PyGetSystemTicks')
-
- @classmethod
def GetPathSeparator(cls):
return os.sep
+ @classmethod
+ def GetSystemTicks(cls):
+ return cls.SIMPLEEXEC(cls.module + '.PyGetSystemTicks')
+
class GlobalScope(object, metaclass = _Singleton):
@classmethod # Mandatory because the GlobalScope class is normally not instantiated
def BasicLibraries(cls):