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

Albert Thuswaldner albert.thuswaldner at gmail.com
Tue May 7 14:03:01 PDT 2013


 sc/source/ui/dbgui/tpsort.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 9a0846b56a46c43e9f4ce7372a9cd89efc50954a
Author: Albert Thuswaldner <albert.thuswaldner at gmail.com>
Date:   Tue May 7 20:19:54 2013 +0200

    Calc sort: Use method GetSortKeyCount from SortParam
    
    Change-Id: I4500ba71abeba5fe8293cea22b10fd910e46059f
    Reviewed-on: https://gerrit.libreoffice.org/3816
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/sc/source/ui/dbgui/tpsort.cxx b/sc/source/ui/dbgui/tpsort.cxx
index 4499600..1479313 100644
--- a/sc/source/ui/dbgui/tpsort.cxx
+++ b/sc/source/ui/dbgui/tpsort.cxx
@@ -169,13 +169,13 @@ void ScTabPageSortFields::Reset( const SfxItemSet& /* rArgSet */ )
     if ( aSortData.maKeyState[0].bDoSort )
     {
         // Make sure that the all sort keys are reset
-        for ( sal_uInt16 i=nSortKeyCount; i<aSortData.maKeyState.size(); i++ )
+        for ( sal_uInt16 i=nSortKeyCount; i<aSortData.GetSortKeyCount(); i++ )
         {
             maSortKeyCtrl.AddSortKey(i+1);
             maSortKeyItems[i].m_pLbSort->SetSelectHdl( LINK( this,
                                  ScTabPageSortFields, SelectHdl ) );
         }
-        nSortKeyCount = aSortData.maKeyState.size();
+        nSortKeyCount = aSortData.GetSortKeyCount();
         FillFieldLists(0);
 
         for ( sal_uInt16 i=0; i<nSortKeyCount; i++ )
@@ -265,7 +265,7 @@ sal_Bool ScTabPageSortFields::FillItemSet( SfxItemSet& rArgSet )
         if ( nSortPos[i] == LISTBOX_ENTRY_NOTFOUND ) nSortPos[i] = 0;
     }
 
-    if( nSortKeyCount >= aNewSortData.maKeyState.size() )
+    if( nSortKeyCount >= aNewSortData.GetSortKeyCount() )
         aNewSortData.maKeyState.resize(nSortKeyCount);
 
     if ( nSortPos[0] > 0 )


More information about the Libreoffice-commits mailing list