From: Fridrich S. <str...@us...> - 2009-09-07 09:51:16
|
Update of /cvsroot/libwpd/writerperfect/filter In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1912/filter Modified Files: OdgExporter.cxx OdgExporter.hxx Log Message: don't consider the dash-array before it is correctly reimplemented Index: OdgExporter.cxx =================================================================== RCS file: /cvsroot/libwpd/writerperfect/filter/OdgExporter.cxx,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- OdgExporter.cxx 7 Sep 2009 08:10:44 -0000 1.34 +++ OdgExporter.cxx 7 Sep 2009 09:51:04 -0000 1.35 @@ -242,10 +242,9 @@ mpHandler->endDocument(); } -void OdgExporter::setStyle(const libwpg::WPGDashArray& dashArray, const ::WPXPropertyListVector& gradient, const ::WPXPropertyList & propList) +void OdgExporter::setStyle(const ::WPXPropertyListVector& gradient, const ::WPXPropertyList & propList) { mxStyle = propList; - mxDashArray = dashArray; mxGradient = gradient; } Index: OdgExporter.hxx =================================================================== RCS file: /cvsroot/libwpd/writerperfect/filter/OdgExporter.hxx,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- OdgExporter.hxx 7 Sep 2009 08:10:44 -0000 1.16 +++ OdgExporter.hxx 7 Sep 2009 09:51:04 -0000 1.17 @@ -46,7 +46,7 @@ void startEmbeddedGraphics(const ::WPXPropertyList& /*propList*/) {} void endEmbeddedGraphics() {} - void setStyle(const libwpg::WPGDashArray& dashArray, const ::WPXPropertyListVector& gradient, const ::WPXPropertyList &propList); + void setStyle(const ::WPXPropertyListVector& gradient, const ::WPXPropertyList &propList); void drawRectangle(const ::WPXPropertyList &propList); void drawEllipse(const ::WPXPropertyList &propList); |