~ubuntu-branches/ubuntu/karmic/libwpd/karmic

« back to all changes in this revision

Viewing changes to src/lib/WPXTable.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:
164
164
}
165
165
 
166
166
WPXTableList::WPXTableList(const WPXTableList &tableList) :
167
 
        m_tableList(tableList.get())
 
167
        m_tableList(tableList.get()),
 
168
        m_refCount(tableList.getRef())
168
169
{
169
 
        acquire(tableList.getRef(), tableList.get());
 
170
        if (m_refCount) 
 
171
                (*m_refCount)++; 
170
172
}
171
173
 
172
174
WPXTableList & WPXTableList::operator=(const WPXTableList & tableList)