[Libreoffice-commits] core.git: toolkit/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Fri May 28 18:37:59 UTC 2021
toolkit/source/controls/filectrl.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 473337a03f8261eee454d84d252fcf85193dc137
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Fri May 28 16:00:11 2021 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri May 28 20:37:18 2021 +0200
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 at collabora.co.uk>
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);
}
More information about the Libreoffice-commits
mailing list