summaryrefslogtreecommitdiff
path: root/toolkit/source/controls/tkspinbutton.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /toolkit/source/controls/tkspinbutton.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'toolkit/source/controls/tkspinbutton.cxx')
-rw-r--r--toolkit/source/controls/tkspinbutton.cxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/toolkit/source/controls/tkspinbutton.cxx b/toolkit/source/controls/tkspinbutton.cxx
index ef5a9665c993..ad20b0ff22ba 100644
--- a/toolkit/source/controls/tkspinbutton.cxx
+++ b/toolkit/source/controls/tkspinbutton.cxx
@@ -65,9 +65,9 @@ namespace toolkit
}
//--------------------------------------------------------------------
- ::rtl::OUString UnoSpinButtonModel::getServiceName( ) throw (RuntimeException)
+ OUString UnoSpinButtonModel::getServiceName( ) throw (RuntimeException)
{
- return ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonModel );
+ return OUString::createFromAscii( szServiceName_UnoSpinButtonModel );
}
//--------------------------------------------------------------------
@@ -76,7 +76,7 @@ namespace toolkit
switch ( nPropId )
{
case BASEPROPERTY_DEFAULTCONTROL:
- return makeAny( ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonControl ) );
+ return makeAny( OUString::createFromAscii( szServiceName_UnoSpinButtonControl ) );
case BASEPROPERTY_BORDER:
return makeAny( (sal_Int16) 0 );
@@ -109,17 +109,17 @@ namespace toolkit
}
//--------------------------------------------------------------------
- ::rtl::OUString SAL_CALL UnoSpinButtonModel::getImplementationName( ) throw(RuntimeException)
+ OUString SAL_CALL UnoSpinButtonModel::getImplementationName( ) throw(RuntimeException)
{
- return ::rtl::OUString( "com.sun.star.comp.toolkit.UnoSpinButtonModel" );
+ return OUString( "com.sun.star.comp.toolkit.UnoSpinButtonModel" );
}
//--------------------------------------------------------------------
- Sequence< ::rtl::OUString > SAL_CALL UnoSpinButtonModel::getSupportedServiceNames() throw(RuntimeException)
+ Sequence< OUString > SAL_CALL UnoSpinButtonModel::getSupportedServiceNames() throw(RuntimeException)
{
- Sequence< ::rtl::OUString > aServices( UnoControlModel::getSupportedServiceNames() );
+ Sequence< OUString > aServices( UnoControlModel::getSupportedServiceNames() );
aServices.realloc( aServices.getLength() + 1 );
- aServices[ aServices.getLength() - 1 ] = ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonModel );
+ aServices[ aServices.getLength() - 1 ] = OUString::createFromAscii( szServiceName_UnoSpinButtonModel );
return aServices;
}
@@ -134,9 +134,9 @@ namespace toolkit
}
//--------------------------------------------------------------------
- ::rtl::OUString UnoSpinButtonControl::GetComponentServiceName()
+ OUString UnoSpinButtonControl::GetComponentServiceName()
{
- return ::rtl::OUString("SpinButton");
+ return OUString("SpinButton");
}
//--------------------------------------------------------------------
@@ -172,17 +172,17 @@ namespace toolkit
}
//--------------------------------------------------------------------
- ::rtl::OUString SAL_CALL UnoSpinButtonControl::getImplementationName( ) throw(RuntimeException)
+ OUString SAL_CALL UnoSpinButtonControl::getImplementationName( ) throw(RuntimeException)
{
- return ::rtl::OUString( "com.sun.star.comp.toolkit.UnoSpinButtonControl" );
+ return OUString( "com.sun.star.comp.toolkit.UnoSpinButtonControl" );
}
//--------------------------------------------------------------------
- Sequence< ::rtl::OUString > SAL_CALL UnoSpinButtonControl::getSupportedServiceNames() throw(RuntimeException)
+ Sequence< OUString > SAL_CALL UnoSpinButtonControl::getSupportedServiceNames() throw(RuntimeException)
{
- Sequence< ::rtl::OUString > aServices( UnoControlBase::getSupportedServiceNames() );
+ Sequence< OUString > aServices( UnoControlBase::getSupportedServiceNames() );
aServices.realloc( aServices.getLength() + 1 );
- aServices[ aServices.getLength() - 1 ] = ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonControl );
+ aServices[ aServices.getLength() - 1 ] = OUString::createFromAscii( szServiceName_UnoSpinButtonControl );
return aServices;
}