summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbaoleobjects.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbaoleobjects.cxx')
-rw-r--r--sc/source/ui/vba/vbaoleobjects.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/vba/vbaoleobjects.cxx b/sc/source/ui/vba/vbaoleobjects.cxx
index 7b1c44fd94ad..968db0b1cc61 100644
--- a/sc/source/ui/vba/vbaoleobjects.cxx
+++ b/sc/source/ui/vba/vbaoleobjects.cxx
@@ -126,7 +126,7 @@ ScVbaOLEObjects::createCollectionObject( const css::uno::Any& aSource )
}
uno::Any
-ScVbaOLEObjects::getItemByStringIndex( const rtl::OUString& sIndex ) throw (uno::RuntimeException)
+ScVbaOLEObjects::getItemByStringIndex( const OUString& sIndex ) throw (uno::RuntimeException)
{
try
{
@@ -158,20 +158,20 @@ ScVbaOLEObjects::getElementType() throw (uno::RuntimeException)
return ooo::vba::excel::XOLEObject::static_type(0);
}
-rtl::OUString
+OUString
ScVbaOLEObjects::getServiceImplName()
{
- return rtl::OUString("ScVbaOLEObjects");
+ return OUString("ScVbaOLEObjects");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
ScVbaOLEObjects::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.OLEObjects" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.excel.OLEObjects" );
}
return aServiceNames;
}