summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbalisttemplate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbalisttemplate.cxx')
-rw-r--r--sw/source/ui/vba/vbalisttemplate.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/vba/vbalisttemplate.cxx b/sw/source/ui/vba/vbalisttemplate.cxx
index 485a5278398b..122ba191a9b0 100644
--- a/sw/source/ui/vba/vbalisttemplate.cxx
+++ b/sw/source/ui/vba/vbalisttemplate.cxx
@@ -45,23 +45,23 @@ SwVbaListTemplate::ListLevels( const uno::Any& index ) throw (uno::RuntimeExcept
void SwVbaListTemplate::applyListTemplate( uno::Reference< beans::XPropertySet >& xProps ) throw (uno::RuntimeException)
{
uno::Reference< container::XIndexReplace > xNumberingRules = pListHelper->getNumberingRules();
- xProps->setPropertyValue( rtl::OUString("NumberingRules") , uno::makeAny( xNumberingRules ) );
+ xProps->setPropertyValue( OUString("NumberingRules") , uno::makeAny( xNumberingRules ) );
}
-rtl::OUString
+OUString
SwVbaListTemplate::getServiceImplName()
{
- return rtl::OUString("SwVbaListTemplate");
+ return OUString("SwVbaListTemplate");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
SwVbaListTemplate::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.ListTemplate" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.word.ListTemplate" );
}
return aServiceNames;
}