summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbatextframe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbatextframe.cxx')
-rw-r--r--sc/source/ui/vba/vbatextframe.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/vba/vbatextframe.cxx b/sc/source/ui/vba/vbatextframe.cxx
index 306f71318ee7..854594faafb9 100644
--- a/sc/source/ui/vba/vbatextframe.cxx
+++ b/sc/source/ui/vba/vbatextframe.cxx
@@ -40,20 +40,20 @@ ScVbaTextFrame::Characters() throw (uno::RuntimeException)
return uno::makeAny( uno::Reference< ov::excel::XCharacters >( new ScVbaCharacters( this, mxContext, aPalette, xSimpleText, aStart, aLength, sal_True ) ) );
}
-rtl::OUString
+OUString
ScVbaTextFrame::getServiceImplName()
{
- return rtl::OUString("ScVbaTextFrame");
+ return OUString("ScVbaTextFrame");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
ScVbaTextFrame::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.excel.TextFrame" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.excel.TextFrame" );
}
return aServiceNames;
}