summaryrefslogtreecommitdiff
path: root/qt4
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2006-03-14 19:34:10 +0000
committerAlbert Astals Cid <aacid@kde.org>2006-03-14 19:34:10 +0000
commita34688ee29e1cdfcbaca232cf005af55af87f796 (patch)
tree9ea03c46b30bc3e6c6d2c9061eb530e2da95aa92 /qt4
parent1a90b3aaf6be4ca3ebb47e904842b1e14a0e8dfc (diff)
* qt4/src/poppler-qt4.h: Fix compilation with gcc4.1, patch by Michael Olbrich
Diffstat (limited to 'qt4')
-rw-r--r--qt4/src/poppler-qt4.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/qt4/src/poppler-qt4.h b/qt4/src/poppler-qt4.h
index e0fa51d8..e9f295c7 100644
--- a/qt4/src/poppler-qt4.h
+++ b/qt4/src/poppler-qt4.h
@@ -405,9 +405,9 @@ delete pixmap;
\warning The application owns the pointer to Document, and this should
be deleted when no longer required.
*/
- static Document *Document::load(const QString & filePath,
- const QByteArray &ownerPassword=QByteArray(),
- const QByteArray &userPassword=QByteArray());
+ static Document *load(const QString & filePath,
+ const QByteArray &ownerPassword=QByteArray(),
+ const QByteArray &userPassword=QByteArray());
/**
Get a specified page
@@ -616,11 +616,11 @@ delete pixmap;
*/
bool hasEmbeddedFiles() const;
- Document::~Document();
+ ~Document();
private:
DocumentData *m_doc;
- Document::Document(DocumentData *dataA);
+ Document(DocumentData *dataA);
};
/**