summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircserverlist.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/ircserverlist.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircserverlist.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/net/opieirc/ircserverlist.h b/noncore/net/opieirc/ircserverlist.h
index ad9231d..d61210e 100644
--- a/noncore/net/opieirc/ircserverlist.h
+++ b/noncore/net/opieirc/ircserverlist.h
@@ -31,14 +31,18 @@ class IRCServerList : public QDialog {
31 Q_OBJECT 31 Q_OBJECT
32public: 32public:
33 IRCServerList(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags f = 0); 33 IRCServerList(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags f = 0);
34 int exec();
35 /* Check whether a server was selected */
36 bool hasServer();
37 /* Return the selected server */
38 IRCServer server();
39
34 ~IRCServerList(); 40 ~IRCServerList();
35public slots: 41public slots:
36 void addServer(); 42 void addServer();
37 void delServer(); 43 void delServer();
38 void editServer(); 44 void editServer();
39protected: 45protected:
40 void update();
41protected:
42 Config *m_config; 46 Config *m_config;
43 QListBox *m_list; 47 QListBox *m_list;
44}; 48};