summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbacell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbacell.cxx')
-rw-r--r--sw/source/ui/vba/vbacell.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/vba/vbacell.cxx b/sw/source/ui/vba/vbacell.cxx
index 4ffbf5d4d232..7756099e6423 100644
--- a/sw/source/ui/vba/vbacell.cxx
+++ b/sw/source/ui/vba/vbacell.cxx
@@ -88,20 +88,20 @@ void SAL_CALL SwVbaCell::SetHeight( float height, sal_Int32 heightrule ) throw (
setHeight( uno::makeAny( height ) );
}
-rtl::OUString
+OUString
SwVbaCell::getServiceImplName()
{
- return rtl::OUString("SwVbaCell");
+ return OUString("SwVbaCell");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
SwVbaCell::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.Cell" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.word.Cell" );
}
return aServiceNames;
}