summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc
authorwazlaf <wazlaf>2002-09-20 23:52:11 (UTC)
committer wazlaf <wazlaf>2002-09-20 23:52:11 (UTC)
commit0f3593c79658beef09155d71b5877a230e9bbb62 (patch) (unidiff)
tree51e258fb055957a655b9cc6479721e7614036c2a /noncore/net/opieirc
parentfb146186b2c0cef47927a75cb431713aa08da6f8 (diff)
downloadopie-0f3593c79658beef09155d71b5877a230e9bbb62.zip
opie-0f3593c79658beef09155d71b5877a230e9bbb62.tar.gz
opie-0f3593c79658beef09155d71b5877a230e9bbb62.tar.bz2
new icon, menu fixed
Diffstat (limited to 'noncore/net/opieirc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/irctab.cpp2
-rw-r--r--noncore/net/opieirc/mainwindow.cpp13
-rw-r--r--noncore/net/opieirc/mainwindow.h2
3 files changed, 1 insertions, 16 deletions
diff --git a/noncore/net/opieirc/irctab.cpp b/noncore/net/opieirc/irctab.cpp
index 36976ab..653a5de 100644
--- a/noncore/net/opieirc/irctab.cpp
+++ b/noncore/net/opieirc/irctab.cpp
@@ -13,3 +13,3 @@ IRCTab::IRCTab(QWidget *parent, const char *name, WFlags f) : QWidget(parent, na
13 QPushButton *close = new QPushButton(this); 13 QPushButton *close = new QPushButton(this);
14 close->setPixmap(Resource::loadPixmap("opieirc/close")); 14 close->setPixmap(Resource::loadPixmap("close"));
15 connect(close, SIGNAL(clicked()), this, SLOT(remove())); 15 connect(close, SIGNAL(clicked()), this, SLOT(remove()));
diff --git a/noncore/net/opieirc/mainwindow.cpp b/noncore/net/opieirc/mainwindow.cpp
index 3d13ee9..af4ce78 100644
--- a/noncore/net/opieirc/mainwindow.cpp
+++ b/noncore/net/opieirc/mainwindow.cpp
@@ -21,7 +21,2 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags f) : QMainWindo
21 a->addTo(irc); 21 a->addTo(irc);
22
23 m_joinAction = new QAction(tr("Join channel"), Resource::loadPixmap("forward"), QString::null, 0, this, 0);
24 m_joinAction->setEnabled(FALSE);
25 connect(m_joinAction, SIGNAL(activated()), this, SLOT(join()));
26 m_joinAction->addTo(irc);
27} 22}
@@ -29,3 +24,2 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags f) : QMainWindo
29void MainWindow::tabSelected(QWidget *) { 24void MainWindow::tabSelected(QWidget *) {
30 m_joinAction->setEnabled(TRUE);
31} 25}
@@ -41,9 +35,2 @@ void MainWindow::closeTab() {
41 35
42void MainWindow::join() {
43 IRCTab *tab = (IRCTab *)m_tabWidget->currentPage();
44 if (tab) {
45 tab->session()->join("#opie.de");
46 }
47}
48
49void MainWindow::addTab(IRCTab *tab) { 36void MainWindow::addTab(IRCTab *tab) {
diff --git a/noncore/net/opieirc/mainwindow.h b/noncore/net/opieirc/mainwindow.h
index c197f5b..dcb782f 100644
--- a/noncore/net/opieirc/mainwindow.h
+++ b/noncore/net/opieirc/mainwindow.h
@@ -39,3 +39,2 @@ protected slots:
39 void closeTab(); 39 void closeTab();
40 void join();
41 void tabSelected(QWidget *widget); 40 void tabSelected(QWidget *widget);
@@ -43,3 +42,2 @@ protected:
43 QTabWidget *m_tabWidget; 42 QTabWidget *m_tabWidget;
44 QAction *m_joinAction;
45}; 43};