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

« back to all changes in this revision

Viewing changes to src/lib/WP1ContentListener.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2007-06-15 13:28:41 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070615132841-00nybwftc708w96n
Tags: 0.8.10-1
* New upstream release
* bump shlibs for libwpd-stream8c2a 

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
// #define WP1_NUM_TEXT_COLUMS_PER_INCH 12
33
33
 
34
34
_WP1ContentParsingState::_WP1ContentParsingState() :
 
35
        m_textBuffer(),
35
36
        m_numDeferredTabs(0),
36
37
        m_footNoteNumber(0),
37
38
        m_endNoteNumber(0)
38
39
{
39
 
        m_textBuffer.clear();
40
40
}
41
41
 
42
42
_WP1ContentParsingState::~_WP1ContentParsingState()
43
43
{
44
 
        m_textBuffer.clear();
45
44
}
46
45
 
47
46