diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-26 14:50:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-26 14:51:34 +0100 |
commit | 7eba2d637334f67ab8a6e7883d9aecb1c3c31e93 (patch) | |
tree | 7d8c27f277d2297c077109c48d6a04e3b5ffa78f /svgio/inc | |
parent | 0347e5c77d281e4a25f79660aafb625691c4f883 (diff) |
drop rtl:: and statics
Change-Id: I6108efad77cf1c21dea3826ae149f3750552b0ed
Diffstat (limited to 'svgio/inc')
-rw-r--r-- | svgio/inc/svgio/svgreader/svgnode.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svgio/inc/svgio/svgreader/svgnode.hxx b/svgio/inc/svgio/svgreader/svgnode.hxx index 6a5217ce4b21..4793ddf3e94b 100644 --- a/svgio/inc/svgio/svgreader/svgnode.hxx +++ b/svgio/inc/svgio/svgreader/svgnode.hxx @@ -82,7 +82,7 @@ namespace svgio // helper to convert a string associated with a token of type SVGTokenDisplay // to the enum Display. Empty trings return the default 'Display_inline' with // which members should be initialized - Display getDisplayFromContent(const rtl::OUString& aContent); + Display getDisplayFromContent(const OUString& aContent); class SvgNode : private boost::noncopyable, public InfoProvider { @@ -122,10 +122,10 @@ namespace svgio protected: /// helper to evtl. link to css style - const SvgStyleAttributes* checkForCssStyle(const rtl::OUString& rClassStr, const SvgStyleAttributes& rOriginal) const; + const SvgStyleAttributes* checkForCssStyle(const OUString& rClassStr, const SvgStyleAttributes& rOriginal) const; /// helper for filling the CssStyle vector once dependent on mbCssStyleVectorBuilt - void fillCssStyleVector(const rtl::OUString& rClassStr); + void fillCssStyleVector(const OUString& rClassStr); public: SvgNode( @@ -135,7 +135,7 @@ namespace svgio virtual ~SvgNode(); /// scan helper to read and interpret a local CssStyle to mpLocalCssStyle - void readLocalCssStyle(const rtl::OUString& aContent); + void readLocalCssStyle(const OUString& aContent); /// style helpers void parseAttributes(const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttribs); |