From a6a06f82cb02bdf8a66c6a9263ecc2f0ab41d10b Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Thu, 19 Dec 2024 15:13:53 -0300 Subject: Mute L10N when is a singleton in text + some refactor Change-Id: I071758f139a7f6e9ab91ca277a420c8283b1eae0 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/178833 Tested-by: Jenkins Reviewed-by: Olivier Hallot (cherry picked from commit 9bbf0db1682b2cd6b749e0fbd9a72606277cafe5) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/178834 Reviewed-by: Christian Lohmaier --- source/text/sbasic/shared/03130700.xhp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'source/text/sbasic/shared/03130700.xhp') diff --git a/source/text/sbasic/shared/03130700.xhp b/source/text/sbasic/shared/03130700.xhp index 05ad9ba0ad..7f23668f0a 100644 --- a/source/text/sbasic/shared/03130700.xhp +++ b/source/text/sbasic/shared/03130700.xhp @@ -20,7 +20,7 @@ - GetSystemTicks Function + GetSystemTicks Function /text/sbasic/shared/03130700.xhp @@ -28,17 +28,17 @@
- + GetSystemTicks function

GetSystemTicks Function

-Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes. +Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes.

Syntax:

-GetSystemTicks() +GetSystemTicks()

Return value:

@@ -48,17 +48,17 @@

Example:

-Sub ExampleWait -Dim lTick As Long - lTick = GetSystemTicks() - Wait 2000 - lTick = (GetSystemTicks() - lTick) - MsgBox "" & lTick & " Ticks" ,0,"The pause lasted" -End Sub +Sub ExampleWait +Dim lTick As Long + lTick = GetSystemTicks() + Wait 2000 + lTick = (GetSystemTicks() - lTick) + MsgBox "" & lTick & " Ticks" ,0,"The pause lasted" +End Sub - +
- +
-- cgit