summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2012-06-10 13:05:15 +0000
committerAriel Constenla-Haile <arielch@apache.org>2012-06-10 13:05:15 +0000
commitd3dbbeeeaaa7006e7f1bda592650957987145e6d (patch)
tree550bea8d3b54048416b03d9dd73403b7b7e194e6 /sfx2
parentb85452001a10ac830828739f61a95b74143260d0 (diff)
GCC 4.7 build breakers
Notes
Notes: prefer: 8de6948e4f67b65d0320f7ec08ab9ad8328b2411
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/sfx2/controlwrapper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/inc/sfx2/controlwrapper.hxx b/sfx2/inc/sfx2/controlwrapper.hxx
index 69ffe0614d76..bcc35b563f4e 100644
--- a/sfx2/inc/sfx2/controlwrapper.hxx
+++ b/sfx2/inc/sfx2/controlwrapper.hxx
@@ -631,13 +631,13 @@ void MetricFieldWrapper< ValueT >::SetControlValue( ValueT nValue )
template< typename ValueT >
ValueT ListBoxWrapper< ValueT >::GetControlValue() const
{
- return GetValueFromPos( this->GetControl().GetSelectEntryPos() );
+ return this->GetValueFromPos( this->GetControl().GetSelectEntryPos() );
}
template< typename ValueT >
void ListBoxWrapper< ValueT >::SetControlValue( ValueT nValue )
{
- sal_uInt16 nPos = GetPosFromValue( nValue );
+ sal_uInt16 nPos = this->GetPosFromValue( nValue );
if( nPos != this->GetNotFoundPos() )
this->GetControl().SelectEntryPos( nPos );
}
@@ -647,13 +647,13 @@ void ListBoxWrapper< ValueT >::SetControlValue( ValueT nValue )
template< typename ValueT >
ValueT ValueSetWrapper< ValueT >::GetControlValue() const
{
- return GetValueFromPos( this->GetControl().GetSelectItemId() );
+ return this->GetValueFromPos( this->GetControl().GetSelectItemId() );
}
template< typename ValueT >
void ValueSetWrapper< ValueT >::SetControlValue( ValueT nValue )
{
- sal_uInt16 nPos = GetPosFromValue( nValue );
+ sal_uInt16 nPos = this->GetPosFromValue( nValue );
if( nPos != this->GetNotFoundPos() )
this->GetControl().SelectItem( nPos );
}