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

Arnaud Versini arnaud.versini at gmail.com
Mon Feb 19 06:21:19 UTC 2018


 accessibility/source/extended/accessibletablistbox.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7d4584a18fac7f37ed0f7b3b26e6e1a9d65da26f
Author: Arnaud Versini <arnaud.versini at gmail.com>
Date:   Sun Feb 18 10:01:49 2018 +0100

    accessibility: Small optimisation in AccessibleTabListBox
    
    Change-Id: Idf351923a57cf608dd4945e3ce639ba8011ecdbb
    Reviewed-on: https://gerrit.libreoffice.org/49922
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/accessibility/source/extended/accessibletablistbox.cxx b/accessibility/source/extended/accessibletablistbox.cxx
index 48d4b12ef05c..fb2116f74852 100644
--- a/accessibility/source/extended/accessibletablistbox.cxx
+++ b/accessibility/source/extended/accessibletablistbox.cxx
@@ -99,10 +99,10 @@ namespace accessibility
         if (nChildIndex == 0)
         {
             //! so far the actual implementation object only supports column headers
-            xRet = implGetFixedChild( ::svt::BBINDEX_COLUMNHEADERBAR );
+            xRet = implGetHeaderBar( ::svt::BBTYPE_COLUMNHEADERBAR );
         }
         else if (nChildIndex == 1)
-            xRet = implGetFixedChild( ::svt::BBINDEX_TABLE );
+            xRet = implGetTable();
 
         if ( !xRet.is() )
             throw RuntimeException();


More information about the Libreoffice-commits mailing list