From: Fridrich S. <str...@us...> - 2008-11-27 22:17:39
|
Update of /cvsroot/libwpd/writerperfect/filter In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18251/filter Modified Files: OdgExporter.cxx OdgExporter.hxx Log Message: adapt to the setFillRule api change Index: OdgExporter.cxx =================================================================== RCS file: /cvsroot/libwpd/writerperfect/filter/OdgExporter.cxx,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- OdgExporter.cxx 27 Nov 2008 16:35:08 -0000 1.23 +++ OdgExporter.cxx 27 Nov 2008 21:43:28 -0000 1.24 @@ -37,7 +37,6 @@ OdgExporter::OdgExporter(DocumentHandler *pHandler, const bool isFlatXML): mpHandler(pHandler), - mxFillRule(AlternatingFill), miGradientIndex(1), miDashIndex(1), miGraphicsStyleIndex(1), @@ -253,11 +252,6 @@ mxBrush = brush; } -void OdgExporter::setFillRule(FillRule rule) -{ - mxFillRule = rule; -} - void OdgExporter::startLayer(const ::WPXPropertyList & /* propList */) { } Index: OdgExporter.hxx =================================================================== RCS file: /cvsroot/libwpd/writerperfect/filter/OdgExporter.hxx,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- OdgExporter.hxx 27 Nov 2008 16:35:08 -0000 1.10 +++ OdgExporter.hxx 27 Nov 2008 21:43:28 -0000 1.11 @@ -49,7 +49,7 @@ void setPen(const libwpg::WPGPen& pen); void setBrush(const libwpg::WPGBrush& brush); - void setFillRule(FillRule rule); + void setFillRule(const ::WPXPropertyList & /*propList*/) {}; void drawRectangle(const ::WPXPropertyList &propList); void drawEllipse(const ::WPXPropertyList &propList); @@ -76,7 +76,6 @@ libwpg::WPGPen mxPen; libwpg::WPGBrush mxBrush; - FillRule mxFillRule; int miGradientIndex; int miDashIndex; int miGraphicsStyleIndex; |