summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbapivottable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbapivottable.cxx')
-rw-r--r--sc/source/ui/vba/vbapivottable.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/vba/vbapivottable.cxx b/sc/source/ui/vba/vbapivottable.cxx
index 97ce5e200ad5..14343b34b795 100644
--- a/sc/source/ui/vba/vbapivottable.cxx
+++ b/sc/source/ui/vba/vbapivottable.cxx
@@ -35,20 +35,20 @@ ScVbaPivotTable::PivotCache() throw (uno::RuntimeException)
return new ScVbaPivotCache( uno::Reference< XHelperInterface >(), mxContext, m_xTable );
}
-rtl::OUString
+OUString
ScVbaPivotTable::getServiceImplName()
{
- return rtl::OUString("ScVbaPivotTable");
+ return OUString("ScVbaPivotTable");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
ScVbaPivotTable::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.PivotTable" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.excel.PivotTable" );
}
return aServiceNames;
}