diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-12 08:32:33 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-13 10:10:40 +0200 |
commit | ad07270f802583e65bdad7d67daf5e09234f7a43 (patch) | |
tree | 8cec34b3eb50a328f1c5e6740c7a3e1c7a0bd84b | |
parent | 6c4ca2ba89336619cb093947cda664f37e0e1d06 (diff) |
warning C4189: local variable is initialized but not referenced
Change-Id: Idc096dd366284503b397a51e708647d026b64eb0
-rw-r--r-- | filter/source/svg/svgwriter.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx index 6851f81c2c92..af413b72ec45 100644 --- a/filter/source/svg/svgwriter.cxx +++ b/filter/source/svg/svgwriter.cxx @@ -1501,6 +1501,7 @@ void SVGTextWriter::writeTextPortion( const Point& rPos, assert(mpVDev); //invalid virtual device +#if 0 const FontMetric aMetric( mpVDev->GetFontMetric() ); bool bTextSpecial = aMetric.IsShadow() || aMetric.IsOutline() || (aMetric.GetRelief() != RELIEF_NONE); @@ -1513,6 +1514,9 @@ void SVGTextWriter::writeTextPortion( const Point& rPos, { // to be implemented } +#else + implWriteTextPortion( rPos, rText, mpVDev->GetTextColor(), bApplyMapping ); +#endif } |