summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/consdlg.cxx
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-14 16:57:06 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-21 12:45:38 +0200
commitd99b65c864cc3358238e4eac651f12a34d05e2d9 (patch)
treefcd7d6fefb9434c27533c826aabc639f68ba97ed /sc/source/ui/dbgui/consdlg.cxx
parentb649e5bf1d3f0a11fb0c2fdf6fa08329529ce6fb (diff)
Rename GetSelectEntryPos -> GetSelectedEntryPos
Change-Id: I0bd4cb463575af843c72d9c8aaf91742203532a4 Reviewed-on: https://gerrit.libreoffice.org/42283 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'sc/source/ui/dbgui/consdlg.cxx')
-rw-r--r--sc/source/ui/dbgui/consdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/consdlg.cxx b/sc/source/ui/dbgui/consdlg.cxx
index a175220c62ea..ffcb614d4e46 100644
--- a/sc/source/ui/dbgui/consdlg.cxx
+++ b/sc/source/ui/dbgui/consdlg.cxx
@@ -385,7 +385,7 @@ IMPL_LINK_NOARG(ScConsolidateDlg, OkHdl, Button*, void)
theOutParam.nCol = aDestAddress.Col();
theOutParam.nRow = aDestAddress.Row();
theOutParam.nTab = aDestAddress.Tab();
- theOutParam.eFunction = LbPosToFunc( pLbFunc->GetSelectEntryPos() );
+ theOutParam.eFunction = LbPosToFunc( pLbFunc->GetSelectedEntryPos() );
theOutParam.bByCol = pBtnByCol->IsChecked();
theOutParam.bByRow = pBtnByRow->IsChecked();
theOutParam.bReferenceData = pBtnRefs->IsChecked();
@@ -473,7 +473,7 @@ IMPL_LINK( ScConsolidateDlg, ClickHdl, Button*, pBtn, void )
else if ( pBtn == pBtnRemove )
{
while ( pLbConsAreas->GetSelectEntryCount() )
- pLbConsAreas->RemoveEntry( pLbConsAreas->GetSelectEntryPos() );
+ pLbConsAreas->RemoveEntry( pLbConsAreas->GetSelectedEntryPos() );
pBtnRemove->Disable();
}
}
@@ -490,7 +490,7 @@ IMPL_LINK( ScConsolidateDlg, SelectHdl, ListBox&, rLb, void )
else if ( (&rLb == pLbDataArea) || (&rLb == pLbDestArea) )
{
Edit* pEd = (&rLb == pLbDataArea) ? pEdDataArea : pEdDestArea;
- const sal_Int32 nSelPos = rLb.GetSelectEntryPos();
+ const sal_Int32 nSelPos = rLb.GetSelectedEntryPos();
if ( pRangeUtil
&& (nSelPos > 0)