[Libreoffice-commits] core.git: vcl/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Fri May 28 20:25:51 UTC 2021
vcl/source/uitest/uiobject.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 078b052e11f0652ed393b809a7d4a03b1feb58d9
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Fri May 28 20:51:26 2021 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri May 28 22:25:05 2021 +0200
IsDisposed->isDisposed in vcl/../uitest
Change-Id: Icaa60c6b7629781fdde8bd0cc49859d0ffe6f06a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116360
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index 7b713cf8d043..41636684803b 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -400,7 +400,7 @@ namespace {
vcl::Window* findChild(vcl::Window* pParent, const OUString& rID, bool bRequireVisible = false)
{
- if (!pParent || pParent->IsDisposed())
+ if (!pParent || pParent->isDisposed())
return nullptr;
if (pParent->get_id() == rID)
More information about the Libreoffice-commits
mailing list