summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-05-28 20:39:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-05-28 21:35:57 +0200
commitd90aa314961ea4a6893144cd6be66dd71cc2cca1 (patch)
tree7c8e7a53dfb05d9fec33dc7d7ea8a6d1a8e0d1ac /vcl
parente608ecf9a9e218739f88edbd96c00631eb9e610b (diff)
IsDisposed->isDisposed in vcl/../app
Change-Id: I1fee7893c5ee67d4ad4f51bf6ce45fe80531cd34 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116357 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/help.cxx2
-rw-r--r--vcl/source/app/salvtables.cxx2
-rw-r--r--vcl/source/app/vclevent.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx
index 662cfa26ac6b..c77bf57e1bd4 100644
--- a/vcl/source/app/help.cxx
+++ b/vcl/source/app/help.cxx
@@ -368,7 +368,7 @@ void HelpTextWindow::ImplShow()
{
VclPtr<HelpTextWindow> xWindow( this );
Show( true, ShowFlags::NoActivate );
- if( !xWindow->IsDisposed() )
+ if( !xWindow->isDisposed() )
PaintImmediately();
}
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index dcf21400eec9..2732640bd1bb 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -5848,7 +5848,7 @@ bool SalInstanceTextView::has_focus() const { return m_xTextView->HasChildPathFo
SalInstanceTextView::~SalInstanceTextView()
{
- if (!m_xTextView->IsDisposed())
+ if (!m_xTextView->isDisposed())
{
if (m_aCursorPositionHdl.IsSet())
m_xTextView->RemoveEventListener(LINK(this, SalInstanceTextView, CursorListener));
diff --git a/vcl/source/app/vclevent.cxx b/vcl/source/app/vclevent.cxx
index 1895051ce633..7da46dbb19ec 100644
--- a/vcl/source/app/vclevent.cxx
+++ b/vcl/source/app/vclevent.cxx
@@ -35,7 +35,7 @@ void VclEventListeners::Call( VclSimpleEvent& rEvent ) const
if (VclWindowEvent* pWindowEvent = dynamic_cast<VclWindowEvent*>(&rEvent))
{
VclPtr<vcl::Window> xWin(pWindowEvent->GetWindow());
- while ( aIter != aEnd && (!xWin || !xWin->IsDisposed()) )
+ while ( aIter != aEnd && (!xWin || !xWin->isDisposed()) )
{
Link<VclSimpleEvent&,void> &rLink = *aIter;
// check this hasn't been removed in some re-enterancy scenario fdo#47368