summaryrefslogtreecommitdiff
path: root/forms/source/component/spinbutton.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/spinbutton.cxx')
-rw-r--r--forms/source/component/spinbutton.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/component/spinbutton.cxx b/forms/source/component/spinbutton.cxx
index 77fe5439fa61..ced15e1d90ce 100644
--- a/forms/source/component/spinbutton.cxx
+++ b/forms/source/component/spinbutton.cxx
@@ -47,7 +47,7 @@ namespace frm
// implemented elsewhere
Any translateExternalDoubleToControlIntValue(
const Any& _rExternalValue, const Reference< XPropertySet >& _rxProperties,
- const ::rtl::OUString& _rMinValueName, const ::rtl::OUString& _rMaxValueName );
+ const OUString& _rMinValueName, const OUString& _rMaxValueName );
Any translateControlIntToExternalDoubleValue( const Any& _rControlIntValue );
//====================================================================
@@ -102,7 +102,7 @@ namespace frm
BEGIN_DESCRIBE_PROPERTIES( 3, OControlModel )
DECL_PROP1( DEFAULT_SPIN_VALUE, sal_Int32, BOUND );
DECL_PROP1( TABINDEX, sal_Int16, BOUND );
- DECL_PROP2( CONTROLSOURCEPROPERTY,::rtl::OUString, READONLY, TRANSIENT );
+ DECL_PROP2( CONTROLSOURCEPROPERTY,OUString, READONLY, TRANSIENT );
END_DESCRIBE_PROPERTIES();
}
@@ -194,7 +194,7 @@ namespace frm
}
//--------------------------------------------------------------------
- ::rtl::OUString SAL_CALL OSpinButtonModel::getServiceName() throw( RuntimeException )
+ OUString SAL_CALL OSpinButtonModel::getServiceName() throw( RuntimeException )
{
return FRM_SUN_COMPONENT_SPINBUTTON;
}
@@ -243,8 +243,8 @@ namespace frm
Any OSpinButtonModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const
{
return translateExternalDoubleToControlIntValue( _rExternalValue, m_xAggregateSet,
- ::rtl::OUString( "SpinValueMin" ),
- ::rtl::OUString( "SpinValueMax" ) );
+ OUString( "SpinValueMin" ),
+ OUString( "SpinValueMax" ) );
}
//--------------------------------------------------------------------