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.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/noncore/unsupported/mail2/attachdiag.h b/noncore/unsupported/mail2/attachdiag.h
index bce5b4b..88686bc 100644
--- a/noncore/unsupported/mail2/attachdiag.h
+++ b/noncore/unsupported/mail2/attachdiag.h
@@ -3,23 +3,22 @@
3 3
4#include <qdialog.h> 4#include <qdialog.h>
5 5
6#include <qpe/applnk.h> 6class DocLnk;
7class FileSelector;
7 8
8class AttachDiag : public QDialog 9class AttachDiag : public QDialog
9{ 10{
10 Q_OBJECT 11 Q_OBJECT
11 12
12public: 13public:
14 DocLnk selectedFile();
13 static DocLnk getFile(QWidget *parent); 15 static DocLnk getFile(QWidget *parent);
14 16
15protected: 17protected:
16 AttachDiag(QWidget *parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0); 18 AttachDiag(QWidget *parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0);
17 19
18private slots:
19 void fileSelected(const DocLnk &);
20
21private: 20private:
22 DocLnk currentFile; 21 FileSelector *_fileSelector;
23 22
24}; 23};
25 24