From 9bc0ca091b7037f7c8f4782103a81b7287bc1de3 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 14 Apr 2013 20:40:58 +0300 Subject: [PATCH] WaE: type qualifiers ignored on function return type Change-Id: I40d946b1e3ba104e8b8acac53ccf7296f6ee78fc --- svgio/inc/svgio/svgreader/svgstyleattributes.hxx | 2 +- svgio/source/svgreader/svgstyleattributes.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/svgio/inc/svgio/svgreader/svgstyleattributes.hxx b/svgio/inc/svgio/svgreader/svgstyleattributes.hxx index 4e0c1acd613d..fe290aed6d37 100644 --- a/svgio/inc/svgio/svgreader/svgstyleattributes.hxx +++ b/svgio/inc/svgio/svgreader/svgstyleattributes.hxx @@ -315,7 +315,7 @@ namespace svgio void setFillOpacity(const SvgNumber& rFillOpacity = SvgNumber()) { maFillOpacity = rFillOpacity; } /// fill rule content - const FillRule getFillRule() const; + FillRule getFillRule() const; void setFillRule(const FillRule aFillRule = FillRule_notset) { maFillRule = aFillRule; } /// fill StrokeDasharray content diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx index 0787490c2e06..140107f5d604 100644 --- a/svgio/source/svgreader/svgstyleattributes.cxx +++ b/svgio/source/svgreader/svgstyleattributes.cxx @@ -2006,7 +2006,7 @@ namespace svgio return SvgNumber(1.0); } - const FillRule SvgStyleAttributes::getFillRule() const + FillRule SvgStyleAttributes::getFillRule() const { if(FillRule_notset != maFillRule) {