summaryrefslogtreecommitdiff
path: root/sd/source/core/stlfamily.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2012-04-15 23:14:28 -0300
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-04-15 23:14:28 -0300
commitff3fd9331dfdbe848c8be2e32cb2e173b96902a4 (patch)
treeccf3e38c80db1a85d4ca17156e2d85b6f39dd514 /sd/source/core/stlfamily.cxx
parent7715779e4b0f9fce364a3429b8775abffa3cd176 (diff)
More RTL_CONSTASCII_USTRINGPARAM removals
/sd/../core
Diffstat (limited to 'sd/source/core/stlfamily.cxx')
-rw-r--r--sd/source/core/stlfamily.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/core/stlfamily.cxx b/sd/source/core/stlfamily.cxx
index a9b623a2bc5e..f3dcfaf6da19 100644
--- a/sd/source/core/stlfamily.cxx
+++ b/sd/source/core/stlfamily.cxx
@@ -187,7 +187,7 @@ SdStyleSheet* SdStyleFamily::GetSheetByName( const OUString& rName ) throw(NoSuc
OUString SAL_CALL SdStyleFamily::getImplementationName() throw(RuntimeException)
{
- return OUString( RTL_CONSTASCII_USTRINGPARAM("SdStyleFamily") );
+ return OUString( "SdStyleFamily" );
}
// ----------------------------------------------------------
@@ -201,7 +201,7 @@ sal_Bool SAL_CALL SdStyleFamily::supportsService( const OUString& ServiceName )
Sequence< OUString > SAL_CALL SdStyleFamily::getSupportedServiceNames() throw(RuntimeException)
{
- OUString aServiceName( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.style.StyleFamily") );
+ OUString aServiceName( "com.sun.star.style.StyleFamily" );
Sequence< OUString > aSeq( &aServiceName, 1 );
return aSeq;
}
@@ -565,7 +565,7 @@ Any SdStyleFamily::getPropertyValue( const OUString& PropertyName ) throw (Unkno
}
else
{
- throw UnknownPropertyException( OUString( RTL_CONSTASCII_USTRINGPARAM("unknown property: ") ) + PropertyName, static_cast<OWeakObject *>(this) );
+ throw UnknownPropertyException( "unknown property: " + PropertyName, static_cast<OWeakObject *>(this) );
}
}