summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbacells.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbacells.cxx')
-rw-r--r--sw/source/ui/vba/vbacells.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/vba/vbacells.cxx b/sw/source/ui/vba/vbacells.cxx
index d70b9cd9b4d5..37028bfd6a16 100644
--- a/sw/source/ui/vba/vbacells.cxx
+++ b/sw/source/ui/vba/vbacells.cxx
@@ -192,20 +192,20 @@ SwVbaCells::createCollectionObject( const uno::Any& aSource )
return aSource;
}
-rtl::OUString
+OUString
SwVbaCells::getServiceImplName()
{
- return rtl::OUString("SwVbaCells");
+ return OUString("SwVbaCells");
}
-uno::Sequence<rtl::OUString>
+uno::Sequence<OUString>
SwVbaCells::getServiceNames()
{
- static uno::Sequence< rtl::OUString > sNames;
+ static uno::Sequence< OUString > sNames;
if ( sNames.getLength() == 0 )
{
sNames.realloc( 1 );
- sNames[0] = rtl::OUString("ooo.vba.word.Cells");
+ sNames[0] = OUString("ooo.vba.word.Cells");
}
return sNames;
}