From 0f3593c79658beef09155d71b5877a230e9bbb62 Mon Sep 17 00:00:00 2001 From: wazlaf Date: Fri, 20 Sep 2002 23:52:11 +0000 Subject: new icon, menu fixed --- 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 @@ -11,7 +11,7 @@ IRCTab::IRCTab(QWidget *parent, const char *name, WFlags f) : QWidget(parent, na descLayout->addWidget(m_description); descLayout->setStretchFactor(m_description, 5); QPushButton *close = new QPushButton(this); - close->setPixmap(Resource::loadPixmap("opieirc/close")); + close->setPixmap(Resource::loadPixmap("close")); connect(close, SIGNAL(clicked()), this, SLOT(remove())); descLayout->addWidget(close); descLayout->setStretchFactor(m_description, 1); 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 @@ -19,15 +19,9 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags f) : QMainWindo QAction *a = new QAction(tr("New connection"), Resource::loadPixmap("pass"), QString::null, 0, this, 0); connect(a, SIGNAL(activated()), this, SLOT(newConnection())); a->addTo(irc); - - m_joinAction = new QAction(tr("Join channel"), Resource::loadPixmap("forward"), QString::null, 0, this, 0); - m_joinAction->setEnabled(FALSE); - connect(m_joinAction, SIGNAL(activated()), this, SLOT(join())); - m_joinAction->addTo(irc); } void MainWindow::tabSelected(QWidget *) { - m_joinAction->setEnabled(TRUE); } void MainWindow::closeTab() { @@ -39,13 +33,6 @@ void MainWindow::closeTab() { } } -void MainWindow::join() { - IRCTab *tab = (IRCTab *)m_tabWidget->currentPage(); - if (tab) { - tab->session()->join("#opie.de"); - } -} - void MainWindow::addTab(IRCTab *tab) { m_tabWidget->addTab(tab, tab->title()); m_tabWidget->showPage(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 @@ -37,11 +37,9 @@ public: protected slots: void newConnection(); void closeTab(); - void join(); void tabSelected(QWidget *widget); protected: QTabWidget *m_tabWidget; - QAction *m_joinAction; }; #endif /* __MAINWINDOW_H */ -- cgit v0.9.0.2