summaryrefslogtreecommitdiff
path: root/uui/source/passwordcontainer.cxx
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-12-10 23:57:10 -0200
committerLuboš Luňák <l.lunak@suse.cz>2012-12-11 12:21:44 +0000
commit3472541ab7118ad6c81cd401ce9018be7c662659 (patch)
treeeb7d8c205e9962b999ace224b265617555994cc6 /uui/source/passwordcontainer.cxx
parente6ba54ceb8ac402570a126922d42db0a8341fc2b (diff)
Remove RTL_* from uui
Change-Id: I411133e81a9b548aaef2333c705c1376f45304d7 Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/1294 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'uui/source/passwordcontainer.cxx')
-rw-r--r--uui/source/passwordcontainer.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/uui/source/passwordcontainer.cxx b/uui/source/passwordcontainer.cxx
index 0005fe976668..cc3d5894f8fa 100644
--- a/uui/source/passwordcontainer.cxx
+++ b/uui/source/passwordcontainer.cxx
@@ -329,22 +329,20 @@ PasswordContainerInteractionHandler::getSupportedServiceNames()
//=========================================================================
// static
-rtl::OUString
+OUString
PasswordContainerInteractionHandler::getImplementationName_Static()
{
- return rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
- "com.sun.star.comp.uui.PasswordContainerInteractionHandler" ) );
+ return OUString( "com.sun.star.comp.uui.PasswordContainerInteractionHandler" );
}
//=========================================================================
// static
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
PasswordContainerInteractionHandler::getSupportedServiceNames_Static()
{
- uno::Sequence< rtl::OUString > aSNS( 1 );
- aSNS.getArray()[ 0 ]
- = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
- "com.sun.star.task.PasswordContainerInteractionHandler" ) );
+ uno::Sequence< OUString > aSNS( 1 );
+ aSNS.getArray()[ 0 ] = OUString(
+ "com.sun.star.task.PasswordContainerInteractionHandler" );
return aSNS;
}