summaryrefslogtreecommitdiff
path: root/noncore/net
Unidiff
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/irctab.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/net/opieirc/irctab.cpp b/noncore/net/opieirc/irctab.cpp
index fbbf303..aee33c4 100644
--- a/noncore/net/opieirc/irctab.cpp
+++ b/noncore/net/opieirc/irctab.cpp
@@ -1,10 +1,12 @@
1#include "irctab.h" 1#include "irctab.h"
2#include "mainwindow.h" 2#include "mainwindow.h"
3 3
4#include <opie2/okeyconfigmanager.h> 4#include <opie2/okeyconfigmanager.h>
5
6#include <qpe/applnk.h>
5#include <qpe/resource.h> 7#include <qpe/resource.h>
6 8
7 9
8#include <qpushbutton.h> 10#include <qpushbutton.h>
9#include <qwhatsthis.h> 11#include <qwhatsthis.h>
10 12
@@ -39,15 +41,17 @@ IRCTab::IRCTab(QWidget *parent, const char *name, WFlags f) : QWidget(parent, na
39 QHBoxLayout *descLayout = new QHBoxLayout(m_layout); 41 QHBoxLayout *descLayout = new QHBoxLayout(m_layout);
40 descLayout->setMargin(5); 42 descLayout->setMargin(5);
41 m_description = new QLabel(tr("Missing description"), this); 43 m_description = new QLabel(tr("Missing description"), this);
42 QWhatsThis::add(m_description, tr("Description of the tab's content")); 44 QWhatsThis::add(m_description, tr("Description of the tab's content"));
43 descLayout->addWidget(m_description); 45 descLayout->addWidget(m_description);
44 descLayout->setStretchFactor(m_description, 5); 46 descLayout->setStretchFactor(m_description, 5);
45 QPushButton *close = new QPushButton(this); 47 QPixmap pic;
48 pic.convertFromImage( Resource::loadImage( "close" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
49 QPushButton *close = new QPushButton(pic, QString::null, this);
50 close->setMaximumWidth( close->height() );
46 QWhatsThis::add(close, tr("Close this tab")); 51 QWhatsThis::add(close, tr("Close this tab"));
47 close->setPixmap(Resource::loadPixmap("close"));
48 connect(close, SIGNAL(clicked()), this, SLOT(remove())); 52 connect(close, SIGNAL(clicked()), this, SLOT(remove()));
49 descLayout->addWidget(close); 53 descLayout->addWidget(close);
50 descLayout->setStretchFactor(m_description, 1); 54 descLayout->setStretchFactor(m_description, 1);
51} 55}
52 56
53 57