diff options
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/inc/svgstyleattributes.hxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgstyleattributes.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svgio/inc/svgstyleattributes.hxx b/svgio/inc/svgstyleattributes.hxx index 3b3035b6236e..c642f169f9c6 100644 --- a/svgio/inc/svgstyleattributes.hxx +++ b/svgio/inc/svgstyleattributes.hxx @@ -411,7 +411,7 @@ namespace svgio const OUString& getDesc() const { return maDesc; } // ClipPathXLink content - OUString getClipPathXLink() const; + OUString const & getClipPathXLink() const; const SvgClipPathNode* accessClipPathXLink() const; // MaskXLink content diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx index 75945a0be2db..f1bc7c737aae 100644 --- a/svgio/source/svgreader/svgstyleattributes.cxx +++ b/svgio/source/svgreader/svgstyleattributes.cxx @@ -2662,7 +2662,7 @@ namespace svgio return nullptr; } - OUString SvgStyleAttributes::getClipPathXLink() const + OUString const & SvgStyleAttributes::getClipPathXLink() const { return maClipPathXLink; } |