[Libreoffice-commits] core.git: dbaccess/source

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Thu May 27 17:46:07 UTC 2021


 dbaccess/source/ui/querydesign/TableWindowAccess.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f682ff1b5502fc3c5f8003d57466795bf795d524
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Wed May 26 11:01:08 2021 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu May 27 19:45:23 2021 +0200

    IsDisposed->isDisposed in dbaccess
    
    Change-Id: I7a113dc01f76d53126b414cf132404ed8ef8db4a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116180
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/dbaccess/source/ui/querydesign/TableWindowAccess.cxx b/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
index 1dc69e763d5d..f49b97c7787c 100644
--- a/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
+++ b/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
@@ -90,7 +90,7 @@ namespace dbaui
     {
         ::osl::MutexGuard aGuard( m_aMutex );
         Reference< XAccessible > aRet;
-        if (m_pTable && !m_pTable->IsDisposed())
+        if (m_pTable && !m_pTable->isDisposed())
         {
             switch(i)
             {
@@ -149,7 +149,7 @@ namespace dbaui
     {
         ::osl::MutexGuard aGuard( m_aMutex  );
         Reference< XAccessible > aRet;
-        if(m_pTable && !m_pTable->IsDisposed())
+        if(m_pTable && !m_pTable->isDisposed())
         {
             Point aPoint(_aPoint.X,_aPoint.Y);
             tools::Rectangle aRect(m_pTable->GetDesktopRectPixel());


More information about the Libreoffice-commits mailing list