summaryrefslogtreecommitdiffstats
path: root/sfx2
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-09-29 13:11:26 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2011-09-29 13:22:57 +0200
commit8de6948e4f67b65d0320f7ec08ab9ad8328b2411 (patch)
treea0727d9ed0cfb35861b3074950b1e285176f5c4d /sfx2
parentAdded #include "unotest/oustringostreaminserter.hxx" back in (will be needed ... (diff)
downloadcore-8de6948e4f67b65d0320f7ec08ab9ad8328b2411.tar.gz
core-8de6948e4f67b65d0320f7ec08ab9ad8328b2411.zip
fix trunk gcc compile errors
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 21210d404841..850aae115e7f 100644
--- a/sfx2/inc/sfx2/controlwrapper.hxx
+++ b/sfx2/inc/sfx2/controlwrapper.hxx
@@ -616,13 +616,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 );
}
@@ -632,13 +632,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 );
}