Update of /cvsroot/libwpd/writerperfect/filter
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv30193/filter
Modified Files:
OdgExporter.cxx OdgExporter.hxx
Log Message:
Adapting to the recent libwpg interface changes
Index: OdgExporter.cxx
===================================================================
RCS file: /cvsroot/libwpd/writerperfect/filter/OdgExporter.cxx,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- OdgExporter.cxx 8 Jun 2010 13:49:08 -0000 1.43
+++ OdgExporter.cxx 10 Jun 2010 18:51:52 -0000 1.44
@@ -543,10 +543,6 @@
mBodyElements.push_back(new TagCloseElement("draw:frame"));
}
-void OdgExporter::drawTextLine(const ::WPXPropertyList &propList, const ::WPXString &str)
-{
-}
-
void OdgExporter::writeGraphicsStyle()
{
#if 0
Index: OdgExporter.hxx
===================================================================
RCS file: /cvsroot/libwpd/writerperfect/filter/OdgExporter.hxx,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- OdgExporter.hxx 8 Jun 2010 13:49:08 -0000 1.20
+++ OdgExporter.hxx 10 Jun 2010 18:51:52 -0000 1.21
@@ -55,7 +55,13 @@
void drawPolygon(const ::WPXPropertyListVector& vertices);
void drawPath(const ::WPXPropertyListVector& path);
void drawGraphicObject(const ::WPXPropertyList &propList, const ::WPXBinaryData& binaryData);
- void drawTextLine(const ::WPXPropertyList &propList, const ::WPXString& str);
+ void startTextObject(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &path) {}
+ void endTextObject() {}
+ void startTextLine(const ::WPXPropertyList &propList) {}
+ void endTextLine() {}
+ void startTextSpan(const ::WPXPropertyList &propList) {}
+ void endTextSpan() {}
+ void insertText(const ::WPXString &str) {}
private:
void writeGraphicsStyle();
|