summaryrefslogtreecommitdiff
path: root/noncore/net/mail/logindialog.h
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/logindialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/logindialog.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/noncore/net/mail/logindialog.h b/noncore/net/mail/logindialog.h
deleted file mode 100644
index 7a0d1b0..0000000
--- a/noncore/net/mail/logindialog.h
+++ b/dev/null
@@ -1,23 +0,0 @@
-#ifndef LOGINDIALOG_H
-#define LOGINDIALOG_H
-
-#include "logindialogui.h"
-
-class LoginDialog : public LoginDialogUI
-{
- Q_OBJECT
-
-public:
- LoginDialog( QString user, QString pass, QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags flags = 0 );
- QString getUser() { return _user; }
- QString getPassword() { return _pass; }
-
-protected slots:
- void accept();
-
-private:
- QString _user, _pass;
-
-};
-
-#endif