~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/lib/WPXMemoryStream.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-12-09 16:20:02 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051209162002-6yx3aa0jrh06oocj
Tags: 0.8.4-2
* re-autogen to fix hppa build
* update automake builddep and add autoconf

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
WPXMemoryInputStream::WPXMemoryInputStream(uint8_t *data, size_t size) :
6
6
        WPXInputStream(false),
7
7
        m_offset(0),
 
8
        m_size(size),
8
9
        m_data(data),
9
 
        m_size(size),
10
10
        m_tmpBuf(NULL)
11
11
{
12
12
}