Update of /cvsroot/libwpg/libwpg/src/conv/raw
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18112/src/conv/raw
Modified Files:
wpg2raw.cpp
Log Message:
some more api change (and more to come)
Index: wpg2raw.cpp
===================================================================
RCS file: /cvsroot/libwpg/libwpg/src/conv/raw/wpg2raw.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- wpg2raw.cpp 27 Nov 2008 16:33:00 -0000 1.15
+++ wpg2raw.cpp 27 Nov 2008 21:42:16 -0000 1.16
@@ -45,7 +45,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);
@@ -159,9 +159,9 @@
brush.gradient.stopColor(c).green, brush.gradient.stopColor(c).blue);
}
-void RawPainter::setFillRule(FillRule /*rule*/)
+void RawPainter::setFillRule(const ::WPXPropertyList &propList)
{
- printf("RawPainter::setFillRule\n");
+ printf("RawPainter::setFillRule (%s)\n", getPropString(propList).cstr());
}
void RawPainter::drawRectangle(const ::WPXPropertyList &propList)
|