summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbafont.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbafont.cxx')
-rw-r--r--sw/source/ui/vba/vbafont.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/ui/vba/vbafont.cxx b/sw/source/ui/vba/vbafont.cxx
index ac74b19eebad..7866611bed55 100644
--- a/sw/source/ui/vba/vbafont.cxx
+++ b/sw/source/ui/vba/vbafont.cxx
@@ -74,9 +74,9 @@ private:
}
}
public:
- static rtl::OUString propName()
+ static OUString propName()
{
- static rtl::OUString sPropName("CharUnderline");
+ static OUString sPropName("CharUnderline");
return sPropName;
}
@@ -126,10 +126,10 @@ SwVbaFont::setUnderline( const uno::Any& _underline ) throw (uno::RuntimeExcepti
}
}
-rtl::OUString
+OUString
SwVbaFont::getServiceImplName()
{
- return rtl::OUString("SwVbaFont");
+ return OUString("SwVbaFont");
}
void SAL_CALL
@@ -220,14 +220,14 @@ SwVbaFont::getShadow() throw (uno::RuntimeException)
return aLongAnyFalse;
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
SwVbaFont::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.Font" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.word.Font" );
}
return aServiceNames;
}