WaE: type qualifiers ignored on function return type

Change-Id: I40d946b1e3ba104e8b8acac53ccf7296f6ee78fc
This commit is contained in:
Tor Lillqvist 2013-04-14 20:40:58 +03:00
parent 03a9ec4aa5
commit 9bc0ca091b
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -2006,7 +2006,7 @@ namespace svgio
return SvgNumber(1.0);
}
const FillRule SvgStyleAttributes::getFillRule() const
FillRule SvgStyleAttributes::getFillRule() const
{
if(FillRule_notset != maFillRule)
{