From: Fridrich S. <str...@us...> - 2008-12-01 16:20:50
|
Update of /cvsroot/libwpg/perfectspot/src/odg In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6612/src/odg Modified Files: FileOutputHandler.hxx Log Message: removing some warnings and making use of pkgconfig even on win32 Index: FileOutputHandler.hxx =================================================================== RCS file: /cvsroot/libwpg/perfectspot/src/odg/FileOutputHandler.hxx,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- FileOutputHandler.hxx 28 Nov 2008 15:09:15 -0000 1.2 +++ FileOutputHandler.hxx 1 Dec 2008 16:20:39 -0000 1.3 @@ -36,11 +36,11 @@ { public: explicit FileOutputHandler(std::ostringstream &contentStream); - virtual void startDocument(); - virtual void endDocument(); - virtual void startElement(const char *psName, const WPXPropertyList &xPropList); - virtual void endElement(const char *psName); - virtual void characters(const WPXString &sCharacters); + void startDocument(); + void endDocument(); + void startElement(const char *psName, const WPXPropertyList &xPropList); + void endElement(const char *psName); + void characters(const WPXString &sCharacters); private: bool mbIsTagOpened; |