summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorAlbert Thuswaldner <albert.thuswaldner@gmail.com>2013-05-07 20:19:54 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-05-07 21:02:42 +0000
commit9a0846b56a46c43e9f4ce7372a9cd89efc50954a (patch)
tree3779313509f0a0379cd0d5536147498ba8899499 /sc/source/ui
parent36564f36a8db30a9bd8ea4a50d2137b80c5052b6 (diff)
Calc sort: Use method GetSortKeyCount from SortParam
Change-Id: I4500ba71abeba5fe8293cea22b10fd910e46059f Reviewed-on: https://gerrit.libreoffice.org/3816 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/dbgui/tpsort.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/tpsort.cxx b/sc/source/ui/dbgui/tpsort.cxx
index 4499600e1f2d..1479313136a5 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 )