From bbcf2133439d386a295a3ff06cebe8caa7deff43 Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Thu, 5 Dec 2019 12:31:19 +0200 Subject: [PATCH] IsObject is not limited to OLE objects Change-Id: I9506691e4f61c5b51a51b79a956db53aa59f95ac Reviewed-on: https://gerrit.libreoffice.org/84548 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- source/text/sbasic/shared/03102800.xhp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/text/sbasic/shared/03102800.xhp b/source/text/sbasic/shared/03102800.xhp index 256598f051..920c3b1773 100644 --- a/source/text/sbasic/shared/03102800.xhp +++ b/source/text/sbasic/shared/03102800.xhp @@ -33,7 +33,7 @@ IsObject function IsObject Function -Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False. +Tests if an object variable is an object (as opposed to, e.g. string). The function returns True if the variable is an object, otherwise it returns False. Syntax: @@ -43,7 +43,7 @@ Bool Parameters: -ObjectVar: Any variable that you want to test. If the Object variable contains an OLE object, the function returns True. +ObjectVar: Any variable that you want to test. If the ObjectVar variable contains an object, the function returns True.