summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@libreoffice.org>2021-03-03 16:54:30 +0100
committerOlivier Hallot <olivier.hallot@libreoffice.org>2021-03-03 17:55:46 +0100
commitc34bb965f993bef53fa739de6f3aaa97de2c2ef9 (patch)
tree2f9df12b43fd8c062b2fa97ebe0a29eee8e74904
parent46e4473935c7274fecd883b71cfb7a59e3b29cf2 (diff)
tdf#140118 Fix Help for BASIC function WaitUntil
Change-Id: Iad03fa267e2eac42b02b17ebe31ed851dad3e5c8 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/111912 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
-rw-r--r--source/text/sbasic/shared/03130610.xhp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/text/sbasic/shared/03130610.xhp b/source/text/sbasic/shared/03130610.xhp
index 1e68ce7aa5..dc0edc5e32 100644
--- a/source/text/sbasic/shared/03130610.xhp
+++ b/source/text/sbasic/shared/03130610.xhp
@@ -37,7 +37,7 @@
<paragraph role="bascode" id="par_id161546104675066">REM Wait until 6:00 PM then call MyMacro.</paragraph>
<paragraph role="bascode" id="par_id1001546104650052">REM If after 6:00 PM, exit.</paragraph>
<paragraph role="bascode" id="par_id3154138" localize="false">Sub ExampleWaitUntil</paragraph>
- <paragraph role="bascode" id="par_id3154367" localize="false">Dim vTimeschedule As Long</paragraph>
+ <paragraph role="bascode" id="par_id3154367" localize="false">Dim vTimeschedule As Double</paragraph>
<paragraph role="bascode" id="par_id3154909" localize="false"> vTimeSchedule = Date() + TimeValue("18:00:00")</paragraph>
<paragraph role="bascode" id="par_id3151042" localize="false"> If vTimeSchedule &lt; Now() Then Exit Sub</paragraph>
<paragraph role="bascode" id="par_id3154217" localize="false"> WaitUntil vTimeSchedule</paragraph>