From: Fridrich S. <str...@us...> - 2008-11-28 11:56:53
|
Update of /cvsroot/libwpg/libwpg/src/conv/raw In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18191/src/conv/raw Modified Files: wpg2raw.cpp Log Message: removing public visibility of WPGBitmap class since Qt4 is able to load a bitmap from a bmp Index: wpg2raw.cpp =================================================================== RCS file: /cvsroot/libwpg/libwpg/src/conv/raw/wpg2raw.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- wpg2raw.cpp 27 Nov 2008 21:42:16 -0000 1.16 +++ wpg2raw.cpp 28 Nov 2008 11:53:03 -0000 1.17 @@ -52,7 +52,6 @@ void drawPolyline(const ::WPXPropertyListVector& vertices); void drawPolygon(const ::WPXPropertyListVector& vertices); void drawPath(const ::WPXPropertyListVector& path); - void drawBitmap(const ::WPXPropertyList &propList, const libwpg::WPGBitmap& bitmap); void drawImageObject(const ::WPXPropertyList &propList, const ::WPXBinaryData& binaryData); }; @@ -189,11 +188,6 @@ printf("RawPainter::drawPath (%s)\n", getPropString(path).cstr()); } -void RawPainter::drawBitmap(const ::WPXPropertyList &propList, const libwpg::WPGBitmap& /*bitmap*/) -{ - printf("RawPainter::drawBitmap (%s)\n", getPropString(propList).cstr()); -} - void RawPainter::drawImageObject(const ::WPXPropertyList& propList, const ::WPXBinaryData& /*binaryData*/) { printf("RawPainter::drawImageObject (%s)\n", getPropString(propList).cstr()); |