summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/attachdiag.h
Unidiff
Diffstat (limited to 'noncore/unsupported/mail2/attachdiag.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/attachdiag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/unsupported/mail2/attachdiag.h b/noncore/unsupported/mail2/attachdiag.h
index c673cfc..bce5b4b 100644
--- a/noncore/unsupported/mail2/attachdiag.h
+++ b/noncore/unsupported/mail2/attachdiag.h
@@ -1,25 +1,25 @@
1#ifndef ATTACHDIAG_H 1#ifndef ATTACHDIAG_H
2#define ATTACHDIAG_H 2#define ATTACHDIAG_H
3 3
4#include <qdialog.h> 4#include <qdialog.h>
5 5
6#include <qpe/applnk.h> 6#include <qpe/applnk.h>
7 7
8class AttachDiag : public QDialog 8class AttachDiag : public QDialog
9{ 9{
10 Q_OBJECT 10 Q_OBJECT
11 11
12public: 12public:
13 static DocLnk getFile(); 13 static DocLnk getFile(QWidget *parent);
14 14
15protected: 15protected:
16 AttachDiag(QWidget *parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0); 16 AttachDiag(QWidget *parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0);
17 17
18private slots: 18private slots:
19 void fileSelected(const DocLnk &); 19 void fileSelected(const DocLnk &);
20 20
21private: 21private:
22 DocLnk currentFile; 22 DocLnk currentFile;
23 23
24}; 24};
25 25