diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-11-06 11:14:12 +0100 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-11-06 17:55:32 +0100 |
commit | aa894d20c0497e47665d6195d6c17df81f70b6b3 (patch) | |
tree | da280ef67d87008b3aa25dfbb6306bdea9314dfc /wizards | |
parent | 124da70f50b526381a979d059e8e5f54c8717208 (diff) |
Fix typo in code
Change-Id: I84f0b51b6fa2c4635623b8dd8387721732834dc0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105398
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/scriptforge/SF_Timer.xba | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/source/scriptforge/SF_Timer.xba b/wizards/source/scriptforge/SF_Timer.xba index 5ed3a7d9546d..f352e1135744 100644 --- a/wizards/source/scriptforge/SF_Timer.xba +++ b/wizards/source/scriptforge/SF_Timer.xba @@ -46,7 +46,7 @@ Private Const STATUSSTOPPED = 3 Private Const DSECOND As Double = 1 / (24 * 60 * 60) ' Duration of 1 second as compared to 1.0 = 1 day -REM ===================================================== CONSTRUCTOR/DESCTRUCTOR +REM ===================================================== CONSTRUCTOR/DESTRUCTOR REM ----------------------------------------------------------------------------- Private Sub Class_Initialize() @@ -68,7 +68,7 @@ End Sub ' ScriptForge.SF_Timer Destructor REM ----------------------------------------------------------------------------- Public Function Dispose() As Variant - Call Calss_Terminate() + Call Class_Terminate() Set Dispose = Nothing End Function ' ScriptForge.SF_Timer Explicit destructor @@ -460,4 +460,4 @@ Const cstMaxLength = 50 ' Maximum length for items End Function ' ScriptForge.SF_Timer._Repr REM ============================================ END OF SCRIPTFORGE.SF_TIMER -</script:module>
\ No newline at end of file +</script:module> |