~ubuntu-branches/ubuntu/lucid/libwpd/lucid

« back to all changes in this revision

Viewing changes to src/conv/html/HtmlListenerImpl.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2007-01-11 15:15:57 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070111151557-rn1kysabqbccx3as
Tags: 0.8.8-2
run make check for stream check; build-depend on libcppunit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        virtual void startDocument();
41
41
        virtual void endDocument();
42
42
 
43
 
        virtual void openPageSpan(const WPXPropertyList &propList);
44
 
        virtual void closePageSpan();
 
43
        virtual void openPageSpan(const WPXPropertyList & /* propList */) {}
 
44
        virtual void closePageSpan() {}
45
45
        virtual void openHeader(const WPXPropertyList &propList);
46
46
        virtual void closeHeader();
47
47
        virtual void openFooter(const WPXPropertyList &propList);
48
48
        virtual void closeFooter();
49
49
 
50
 
        virtual void openSection(const WPXPropertyList &propList, const WPXPropertyListVector &columns) {}
 
50
        virtual void openSection(const WPXPropertyList & /* propList */, const WPXPropertyListVector & /* columns */) {}
51
51
        virtual void closeSection() {}
52
52
        virtual void openParagraph(const WPXPropertyList &propList, const WPXPropertyListVector &tabStops);
53
53
        virtual void closeParagraph();
58
58
        virtual void insertText(const WPXString &text);
59
59
        virtual void insertLineBreak();
60
60
 
61
 
        virtual void defineOrderedListLevel(const WPXPropertyList &propList) {}
62
 
        virtual void defineUnorderedListLevel(const WPXPropertyList &propList) {}
 
61
        virtual void defineOrderedListLevel(const WPXPropertyList & /* propList */) {}
 
62
        virtual void defineUnorderedListLevel(const WPXPropertyList & /* propList */) {}
63
63
        virtual void openOrderedListLevel(const WPXPropertyList &propList);
64
64
        virtual void openUnorderedListLevel(const WPXPropertyList &propList);
65
65
        virtual void closeOrderedListLevel();
78
78
        virtual void closeTableRow();
79
79
        virtual void openTableCell(const WPXPropertyList &propList);
80
80
        virtual void closeTableCell();
81
 
        virtual void insertCoveredTableCell(const WPXPropertyList &propList) {}
 
81
        virtual void insertCoveredTableCell(const WPXPropertyList & /* propList */) {}
82
82
        virtual void closeTable();
83
83
 
84
84
private: