summaryrefslogtreecommitdiff
path: root/cui/source/tabpages/tplneend.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 /cui/source/tabpages/tplneend.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 'cui/source/tabpages/tplneend.cxx')
-rw-r--r--cui/source/tabpages/tplneend.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/cui/source/tabpages/tplneend.cxx b/cui/source/tabpages/tplneend.cxx
index db2ddeed56df..9329ea2d8008 100644
--- a/cui/source/tabpages/tplneend.cxx
+++ b/cui/source/tabpages/tplneend.cxx
@@ -193,7 +193,7 @@ DeactivateRC SvxLineEndDefTabPage::DeactivatePage( SfxItemSet* _pSet )
void SvxLineEndDefTabPage::CheckChanges_Impl()
{
- sal_Int32 nPos = m_pLbLineEnds->GetSelectEntryPos();
+ sal_Int32 nPos = m_pLbLineEnds->GetSelectedEntryPos();
if ( nPos != LISTBOX_ENTRY_NOTFOUND )
{
@@ -208,7 +208,7 @@ void SvxLineEndDefTabPage::CheckChanges_Impl()
ClickModifyHdl_Impl( nullptr );
}
}
- nPos = m_pLbLineEnds->GetSelectEntryPos();
+ nPos = m_pLbLineEnds->GetSelectedEntryPos();
if ( nPos != LISTBOX_ENTRY_NOTFOUND )
*pPosLineEndLb = nPos;
@@ -223,7 +223,7 @@ bool SvxLineEndDefTabPage::FillItemSet( SfxItemSet* rSet )
{
CheckChanges_Impl();
- long nPos = m_pLbLineEnds->GetSelectEntryPos();
+ long nPos = m_pLbLineEnds->GetSelectedEntryPos();
const XLineEndEntry* pEntry = pLineEndList->GetLineEnd(nPos);
rSet->Put( XLineStartItem( pEntry->GetName(), pEntry->GetLineEnd() ) );
@@ -241,7 +241,7 @@ void SvxLineEndDefTabPage::Reset( const SfxItemSet* )
// Update lineend
if( pLineEndList->Count() > 0 )
{
- int nPos = m_pLbLineEnds->GetSelectEntryPos();
+ int nPos = m_pLbLineEnds->GetSelectedEntryPos();
const XLineEndEntry* pEntry = pLineEndList->GetLineEnd(nPos);
@@ -282,7 +282,7 @@ IMPL_LINK_NOARG(SvxLineEndDefTabPage, SelectLineEndHdl_Impl, ListBox&, void)
{
if( pLineEndList->Count() > 0 )
{
- int nPos = m_pLbLineEnds->GetSelectEntryPos();
+ int nPos = m_pLbLineEnds->GetSelectedEntryPos();
const XLineEndEntry* pEntry = pLineEndList->GetLineEnd(nPos);
@@ -305,7 +305,7 @@ IMPL_LINK_NOARG(SvxLineEndDefTabPage, SelectLineEndHdl_Impl, ListBox&, void)
IMPL_LINK_NOARG(SvxLineEndDefTabPage, ClickModifyHdl_Impl, Button*, void)
{
- sal_Int32 nPos = m_pLbLineEnds->GetSelectEntryPos();
+ sal_Int32 nPos = m_pLbLineEnds->GetSelectedEntryPos();
if( nPos != LISTBOX_ENTRY_NOTFOUND )
{
@@ -489,7 +489,7 @@ IMPL_LINK_NOARG(SvxLineEndDefTabPage, ClickAddHdl_Impl, Button*, void)
IMPL_LINK_NOARG(SvxLineEndDefTabPage, ClickDeleteHdl_Impl, Button*, void)
{
- sal_Int32 nPos = m_pLbLineEnds->GetSelectEntryPos();
+ sal_Int32 nPos = m_pLbLineEnds->GetSelectedEntryPos();
if( nPos != LISTBOX_ENTRY_NOTFOUND )
{
@@ -661,7 +661,7 @@ void SvxLineEndDefTabPage::DataChanged( const DataChangedEvent& rDCEvt )
if ( (rDCEvt.GetType() == DataChangedEventType::SETTINGS) && (rDCEvt.GetFlags() & AllSettingsFlags::STYLE) )
{
- sal_Int32 nOldSelect = m_pLbLineEnds->GetSelectEntryPos();
+ sal_Int32 nOldSelect = m_pLbLineEnds->GetSelectedEntryPos();
m_pLbLineEnds->Clear();
m_pLbLineEnds->Fill( pLineEndList );
m_pLbLineEnds->SelectEntryPos( nOldSelect );