summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbadialogs.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbadialogs.cxx')
-rw-r--r--sw/source/ui/vba/vbadialogs.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/vba/vbadialogs.cxx b/sw/source/ui/vba/vbadialogs.cxx
index ac1e5bc5cd87..db1f53019836 100644
--- a/sw/source/ui/vba/vbadialogs.cxx
+++ b/sw/source/ui/vba/vbadialogs.cxx
@@ -32,20 +32,20 @@ SwVbaDialogs::Item( const uno::Any &aItem ) throw (uno::RuntimeException)
return uno::Any( aDialog );
}
-rtl::OUString
+OUString
SwVbaDialogs::getServiceImplName()
{
- return rtl::OUString("SwVbaDialogs");
+ return OUString("SwVbaDialogs");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
SwVbaDialogs::getServiceNames()
{
- static uno::Sequence< rtl::OUString > aServiceNames;
+ static uno::Sequence< OUString > aServiceNames;
if ( aServiceNames.getLength() == 0 )
{
aServiceNames.realloc( 1 );
- aServiceNames[ 0 ] = rtl::OUString("ooo.vba.word.Dialogs" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.word.Dialogs" );
}
return aServiceNames;
}