~ubuntu-branches/ubuntu/dapper/poppler/dapper-security

« back to all changes in this revision

Viewing changes to qt/poppler-qt.h

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2005-12-30 11:34:07 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051230113407-8grizsk0ar874uoi
Tags: 0.4.3-1
* New upstream release.
* New maintainer (Closes: #344738)
* CVE-2005-3191 and CAN-2005-2097 fixes merged upstream.
* Fixed some rendering bugs and disabled Cairo output
  (Closes: #314556, #322964, #328211)
* Acknowledge NMU (Closes: #342288)
* Add 001-selection-crash-bug.patch (Closes: #330544)
* Add poppler-utils (merge patch from Ubuntu)

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
    UseOC
151
151
  };
152
152
  
153
 
  static Document *Document::load(const QString & filePath);
 
153
  static Document *load(const QString & filePath);
154
154
  
155
155
  Page *getPage(int index) const{ return new Page(this, index); }
156
156
  
172
172
  bool okToAddNotes() const;
173
173
  double getPDFVersion() const;
174
174
  
175
 
  Document::~Document();
 
175
  ~Document();
176
176
  
177
177
private:
178
178
  DocumentData *data;
179
 
  Document::Document(DocumentData *dataA);
 
179
  Document(DocumentData *dataA);
180
180
};
181
181
 
182
182
}