summaryrefslogtreecommitdiff
path: root/vcl/source/components
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-01-12 09:57:37 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-01-12 10:00:01 +0100
commit08def320062ad7c5cf98e577a2af1fad7c8eb267 (patch)
tree249e0e4c17fea0d9fc9c56d6ea823e564923090f /vcl/source/components
parent8cfc269842792b014ad53206706e7103b12e0b30 (diff)
RTL_CONSTASCII_(U)STRINGPARAM removed in vcl/[source,null]
Change-Id: Icedb5ad5c1023829689d56367043451b8fe95eed
Diffstat (limited to 'vcl/source/components')
-rw-r--r--vcl/source/components/fontident.cxx4
-rw-r--r--vcl/source/components/stringmirror.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/components/fontident.cxx b/vcl/source/components/fontident.cxx
index 8fb3b1cfaea0..e4187ccf7325 100644
--- a/vcl/source/components/fontident.cxx
+++ b/vcl/source/components/fontident.cxx
@@ -158,14 +158,14 @@ Any SAL_CALL FontIdentificator::getMaterial() throw(RuntimeException)
Sequence< OUString > FontIdentificator_getSupportedServiceNames()
{
- static OUString aServiceName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.FontIdentificator" ) );
+ static OUString aServiceName( "com.sun.star.awt.FontIdentificator" );
static Sequence< OUString > aServiceNames( &aServiceName, 1 );
return aServiceNames;
}
OUString FontIdentificator_getImplementationName()
{
- return OUString( RTL_CONSTASCII_USTRINGPARAM( "vcl::FontIdentificator" ) );
+ return OUString( "vcl::FontIdentificator" );
}
Reference< XInterface > SAL_CALL FontIdentificator_createInstance( const Reference< XMultiServiceFactory >& )
diff --git a/vcl/source/components/stringmirror.cxx b/vcl/source/components/stringmirror.cxx
index 43d478acb124..2c10976018c0 100644
--- a/vcl/source/components/stringmirror.cxx
+++ b/vcl/source/components/stringmirror.cxx
@@ -72,14 +72,14 @@ public:
Sequence< OUString > StringMirror_getSupportedServiceNames()
{
- static OUString aServiceName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.StringMirror" ) );
+ static OUString aServiceName( "com.sun.star.awt.StringMirror" );
static Sequence< OUString > aServiceNames( &aServiceName, 1 );
return aServiceNames;
}
OUString StringMirror_getImplementationName()
{
- return OUString( RTL_CONSTASCII_USTRINGPARAM( "vcl::StringMirror" ) );
+ return OUString( "vcl::StringMirror" );
}
Reference< XInterface > SAL_CALL StringMirror_createInstance( const Reference< XMultiServiceFactory >& )