summaryrefslogtreecommitdiff
path: root/svgio/source/svguno/xsvgparser.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /svgio/source/svguno/xsvgparser.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'svgio/source/svguno/xsvgparser.cxx')
-rw-r--r--svgio/source/svguno/xsvgparser.cxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx
index 23742d7f0754..126eb43a37a6 100644
--- a/svgio/source/svguno/xsvgparser.cxx
+++ b/svgio/source/svguno/xsvgparser.cxx
@@ -58,12 +58,12 @@ namespace svgio
// XSvgParser
virtual uno::Sequence< uno::Reference< ::graphic::XPrimitive2D > > SAL_CALL getDecomposition(
const uno::Reference< ::io::XInputStream >& xSVGStream,
- const ::rtl::OUString& aAbsolutePath) throw (uno::RuntimeException);
+ const OUString& aAbsolutePath) throw (uno::RuntimeException);
// XServiceInfo
- virtual rtl::OUString SAL_CALL getImplementationName() throw(uno::RuntimeException);
- virtual ::sal_Bool SAL_CALL supportsService(const rtl::OUString&) throw(uno::RuntimeException);
- virtual uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() throw(uno::RuntimeException);
+ virtual OUString SAL_CALL getImplementationName() throw(uno::RuntimeException);
+ virtual ::sal_Bool SAL_CALL supportsService(const OUString&) throw(uno::RuntimeException);
+ virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(uno::RuntimeException);
};
} // end of namespace svgreader
} // end of namespace svgio
@@ -75,17 +75,17 @@ namespace svgio
{
namespace svgreader
{
- uno::Sequence< rtl::OUString > XSvgParser_getSupportedServiceNames()
+ uno::Sequence< OUString > XSvgParser_getSupportedServiceNames()
{
- static rtl::OUString aServiceName("com.sun.star.graphic.SvgTools" );
- static uno::Sequence< rtl::OUString > aServiceNames( &aServiceName, 1 );
+ static OUString aServiceName("com.sun.star.graphic.SvgTools" );
+ static uno::Sequence< OUString > aServiceNames( &aServiceName, 1 );
return( aServiceNames );
}
- rtl::OUString XSvgParser_getImplementationName()
+ OUString XSvgParser_getImplementationName()
{
- return rtl::OUString( "svgio::svgreader::XSvgParser" );
+ return OUString( "svgio::svgreader::XSvgParser" );
}
uno::Reference< uno::XInterface > SAL_CALL XSvgParser_createInstance(const uno::Reference< uno::XComponentContext >& context)
@@ -113,7 +113,7 @@ namespace svgio
uno::Sequence< uno::Reference< ::graphic::XPrimitive2D > > XSvgParser::getDecomposition(
const uno::Reference< ::io::XInputStream >& xSVGStream,
- const ::rtl::OUString& aAbsolutePath ) throw (uno::RuntimeException)
+ const OUString& aAbsolutePath ) throw (uno::RuntimeException)
{
drawinglayer::primitive2d::Primitive2DSequence aRetval;
@@ -173,14 +173,14 @@ namespace svgio
return aRetval;
}
- rtl::OUString SAL_CALL XSvgParser::getImplementationName() throw(uno::RuntimeException)
+ OUString SAL_CALL XSvgParser::getImplementationName() throw(uno::RuntimeException)
{
return(XSvgParser_getImplementationName());
}
- sal_Bool SAL_CALL XSvgParser::supportsService(const rtl::OUString& rServiceName) throw(uno::RuntimeException)
+ sal_Bool SAL_CALL XSvgParser::supportsService(const OUString& rServiceName) throw(uno::RuntimeException)
{
- const uno::Sequence< rtl::OUString > aServices(XSvgParser_getSupportedServiceNames());
+ const uno::Sequence< OUString > aServices(XSvgParser_getSupportedServiceNames());
for(sal_Int32 nService(0); nService < aServices.getLength(); nService++)
{
@@ -193,7 +193,7 @@ namespace svgio
return sal_False;
}
- uno::Sequence< rtl::OUString > SAL_CALL XSvgParser::getSupportedServiceNames() throw(uno::RuntimeException)
+ uno::Sequence< OUString > SAL_CALL XSvgParser::getSupportedServiceNames() throw(uno::RuntimeException)
{
return XSvgParser_getSupportedServiceNames();
}