From 024a11fee38492b8e76917ad5e9f5b0b26f46313 Mon Sep 17 00:00:00 2001 From: Jean-Pierre Ledure Date: Mon, 24 May 2021 12:57:21 +0200 Subject: 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 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure --- wizards/source/scriptforge/python/scriptforge.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wizards') 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 @@ -738,14 +738,14 @@ class SFScriptForge: def GetGuiType(cls): 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): -- cgit