From b9a8ac48d7a57f5dcb8dfa9c0400fb9e977c4bf8 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Thu, 14 Sep 2017 17:09:01 +0200 Subject: Rename GetSelectEntryData -> GetSelectedEntryData Change-Id: Ia6402f6d2c978cbd5557052a43e9728ca9e11173 Reviewed-on: https://gerrit.libreoffice.org/42285 Reviewed-by: Samuel Mehrbrodt Tested-by: Samuel Mehrbrodt --- sfx2/source/dialog/dinfdlg.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sfx2/source/dialog/dinfdlg.cxx') diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx index 9a32d2b1780a..1a84fb241fc4 100644 --- a/sfx2/source/dialog/dinfdlg.cxx +++ b/sfx2/source/dialog/dinfdlg.cxx @@ -1554,7 +1554,7 @@ void CustomPropertiesWindow::dispose() IMPL_LINK(CustomPropertiesWindow, TypeHdl, ListBox&, rListBox, void) { CustomPropertiesTypeBox* pBox = static_cast(&rListBox); - long nType = reinterpret_cast( pBox->GetSelectEntryData() ); + long nType = reinterpret_cast( pBox->GetSelectedEntryData() ); CustomPropertyLine* pLine = pBox->GetLine(); pLine->m_aValueEdit->Show( (CUSTOM_TYPE_TEXT == nType) || (CUSTOM_TYPE_NUMBER == nType) ); pLine->m_aDateField->Show( (CUSTOM_TYPE_DATE == nType) || (CUSTOM_TYPE_DATETIME == nType) ); @@ -1626,7 +1626,7 @@ bool CustomPropertiesWindow::IsLineValid( CustomPropertyLine* pLine ) const bool bIsValid = true; pLine->m_bTypeLostFocus = false; long nType = reinterpret_cast( - pLine->m_aTypeBox->GetSelectEntryData() ); + pLine->m_aTypeBox->GetSelectedEntryData() ); OUString sValue = pLine->m_aValueEdit->GetText(); if ( sValue.isEmpty() ) return true; @@ -1889,7 +1889,7 @@ Sequence< beans::PropertyValue > CustomPropertiesWindow::GetCustomProperties() c { aPropertiesSeq[i].Name = sPropertyName; long nType = reinterpret_cast( - pLine->m_aTypeBox->GetSelectEntryData() ); + pLine->m_aTypeBox->GetSelectedEntryData() ); if ( CUSTOM_TYPE_NUMBER == nType ) { double nValue = 0; -- cgit