summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-05-28 20:51:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-05-28 22:25:05 +0200
commit078b052e11f0652ed393b809a7d4a03b1feb58d9 (patch)
treea9065ff35851cb097ca4496387eb5bc3c2a11b8f /vcl
parent8d83093e36e973f4d188682ac2bfa9a6d80622f3 (diff)
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@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/uitest/uiobject.cxx2
1 files changed, 1 insertions, 1 deletions
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)