author | wazlaf <wazlaf> | 2002-09-20 23:52:11 (UTC) |
---|---|---|
committer | wazlaf <wazlaf> | 2002-09-20 23:52:11 (UTC) |
commit | 0f3593c79658beef09155d71b5877a230e9bbb62 (patch) (side-by-side diff) | |
tree | 51e258fb055957a655b9cc6479721e7614036c2a | |
parent | fb146186b2c0cef47927a75cb431713aa08da6f8 (diff) | |
download | opie-0f3593c79658beef09155d71b5877a230e9bbb62.zip opie-0f3593c79658beef09155d71b5877a230e9bbb62.tar.gz opie-0f3593c79658beef09155d71b5877a230e9bbb62.tar.bz2 |
new icon, menu fixed
-rw-r--r-- | noncore/net/opieirc/irctab.cpp | 2 | ||||
-rw-r--r-- | noncore/net/opieirc/mainwindow.cpp | 13 | ||||
-rw-r--r-- | noncore/net/opieirc/mainwindow.h | 2 |
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 @@ -12,5 +12,5 @@ IRCTab::IRCTab(QWidget *parent, const char *name, WFlags f) : QWidget(parent, na 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); 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 @@ -20,13 +20,7 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags f) : QMainWindo 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); } @@ -40,11 +34,4 @@ 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()); 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 @@ -38,9 +38,7 @@ protected slots: void newConnection(); void closeTab(); - void join(); void tabSelected(QWidget *widget); protected: QTabWidget *m_tabWidget; - QAction *m_joinAction; }; |