~ubuntu-branches/ubuntu/trusty/libwpd/trusty

« back to all changes in this revision

Viewing changes to src/lib/WPXStylesListener.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2006-07-15 11:58:12 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060715115812-v18efmdayby4clau
Tags: 0.8.6-1
* New upstream release
* swap maintainer/uploader

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include "WPXStylesListener.h"
29
29
 
30
 
WPXStylesListener::WPXStylesListener(std::list<WPXPageSpan> &pageList, WPXHLListenerImpl *listenerImpl) :
31
 
        WPXListener(),
32
 
        m_listenerImpl(listenerImpl),
33
 
        m_pageList(pageList)
 
30
WPXStylesListener::WPXStylesListener(std::list<WPXPageSpan> &pageList) :
 
31
        WPXListener(pageList)
34
32
{
35
33
}
36
34