diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-28 16:00:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-28 20:37:18 +0200 |
commit | 473337a03f8261eee454d84d252fcf85193dc137 (patch) | |
tree | 2de1b971034de5d68df3e84dc254f0e367289cf3 /toolkit/source/controls/filectrl.cxx | |
parent | 07556be594c77f9b7886ff31c2e1752f937cacd4 (diff) |
IsDisposed->isDisposed in toolkit
Change-Id: Iad56b2b265f83f73f75086aafeb1696c8a8ab5fd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116346
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit/source/controls/filectrl.cxx')
-rw-r--r-- | toolkit/source/controls/filectrl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/controls/filectrl.cxx b/toolkit/source/controls/filectrl.cxx index e3b2fd8abcb5..e2bc14ed0311 100644 --- a/toolkit/source/controls/filectrl.cxx +++ b/toolkit/source/controls/filectrl.cxx @@ -176,14 +176,14 @@ void FileControl::Resize() void FileControl::GetFocus() { - if (!maEdit || maEdit->IsDisposed()) + if (!maEdit || maEdit->isDisposed()) return; maEdit->GrabFocus(); } void FileControl::SetEditModifyHdl( const Link<Edit&,void>& rLink ) { - if (!maEdit || maEdit->IsDisposed()) + if (!maEdit || maEdit->isDisposed()) return; maEdit->SetModifyHdl(rLink); } |