summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbaframe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbaframe.cxx')
-rw-r--r--sw/source/ui/vba/vbaframe.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/vba/vbaframe.cxx b/sw/source/ui/vba/vbaframe.cxx
index 3dc5bad28821..4b1564dde8f1 100644
--- a/sw/source/ui/vba/vbaframe.cxx
+++ b/sw/source/ui/vba/vbaframe.cxx
@@ -43,20 +43,20 @@ void SAL_CALL SwVbaFrame::Select() throw ( uno::RuntimeException )
xSelectSupp->select( uno::makeAny( mxTextFrame ) );
}
-rtl::OUString
+OUString
SwVbaFrame::getServiceImplName()
{
- return rtl::OUString("SwVbaFrame");
+ return OUString("SwVbaFrame");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
SwVbaFrame::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.Frame" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.word.Frame" );
}
return aServiceNames;
}