diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-14 20:40:58 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-14 21:00:01 +0300 |
commit | 9bc0ca091b7037f7c8f4782103a81b7287bc1de3 (patch) | |
tree | d9f3305090d4501e51dbfb40a3f1323e557599cb | |
parent | 03a9ec4aa5a795b86fa626de1bf23196d7375f50 (diff) |
WaE: type qualifiers ignored on function return type
Change-Id: I40d946b1e3ba104e8b8acac53ccf7296f6ee78fc
-rw-r--r-- | svgio/inc/svgio/svgreader/svgstyleattributes.hxx | 2 | ||||
-rw-r--r-- | 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) { |