From: Fridrich S. <str...@us...> - 2009-09-07 09:41:39
|
Update of /cvsroot/libwpg/libwpg/src/conv/raw In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32646/src/conv/raw Modified Files: wpg2raw.cpp Log Message: Adding the image resolutions to the generated DIB + starting to rework the dash-array to remove the public accessibility of the class Index: wpg2raw.cpp =================================================================== RCS file: /cvsroot/libwpg/libwpg/src/conv/raw/wpg2raw.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- wpg2raw.cpp 7 Sep 2009 08:10:18 -0000 1.23 +++ wpg2raw.cpp 7 Sep 2009 09:41:28 -0000 1.24 @@ -44,7 +44,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); @@ -135,7 +135,7 @@ printf("RawPainter::endEmbeddedGraphics \n"); } -void RawPainter::setStyle(const libwpg::WPGDashArray& dashArray, const ::WPXPropertyListVector& gradient, const ::WPXPropertyList &propList) +void RawPainter::setStyle(const ::WPXPropertyListVector& gradient, const ::WPXPropertyList &propList) { printf("RawPainter::setStyle(gradient: (%s), %s)\n", getPropString(gradient).cstr(), getPropString(propList).cstr()); } |