aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/channelsjoin/ChannelsJoinDialog.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2017-01-28 18:30:15 +0100
committerGravatar ctrlaltca2017-02-04 15:40:36 +0100
commitca157d44affdd952e0c3746e4fb35ce04116833f (patch)
tree6eea74110bde19d610ee5674a26bce9f22ab2db5 /src/modules/channelsjoin/ChannelsJoinDialog.cpp
parent[AV] strawberry perl on choco should now have a checksum, update dicts (diff)
downloadKVIrc-ca157d44affdd952e0c3746e4fb35ce04116833f.tar.gz
KVIrc-ca157d44affdd952e0c3746e4fb35ce04116833f.tar.bz2
KVIrc-ca157d44affdd952e0c3746e4fb35ce04116833f.zip
make channel list dialogs more consistent; fix #1790
Diffstat (limited to 'src/modules/channelsjoin/ChannelsJoinDialog.cpp')
-rw-r--r--src/modules/channelsjoin/ChannelsJoinDialog.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/modules/channelsjoin/ChannelsJoinDialog.cpp b/src/modules/channelsjoin/ChannelsJoinDialog.cpp
index 9c1ccfdd0..b373e87ea 100644
--- a/src/modules/channelsjoin/ChannelsJoinDialog.cpp
+++ b/src/modules/channelsjoin/ChannelsJoinDialog.cpp
@@ -35,12 +35,12 @@
#include "KviRegisteredChannel.h"
#include "KviRegisteredChannelDataBase.h"
#include "KviSelectors.h"
-#include "KviTalGroupBox.h"
#include <QCheckBox>
#include <QCloseEvent>
#include <QDesktopWidget>
#include <QEvent>
+#include <QGroupBox>
#include <QHeaderView>
#include <QLabel>
#include <QLayout>
@@ -71,23 +71,29 @@ ChannelsJoinDialog::ChannelsJoinDialog(const char * name)
m_pTreeWidget->setSelectionMode(QAbstractItemView::SingleSelection);
g->addWidget(m_pTreeWidget, 0, 0, 1, 2);
- m_pGroupBox = new KviTalGroupBox(Qt::Horizontal, __tr2qs("Channel"), this);
+ m_pGroupBox = new QGroupBox(__tr2qs("Channel"), this);
+ QGridLayout * pChannelLayout = new QGridLayout(m_pGroupBox);
+
QString szMsg = __tr2qs("Name");
szMsg.append(":");
- new QLabel(szMsg, m_pGroupBox);
+ QLabel * pNameLabel = new QLabel(szMsg, m_pGroupBox);
+ pChannelLayout->addWidget(pNameLabel, 1, 0);
m_pChannelEdit = new QLineEdit(m_pGroupBox);
connect(m_pChannelEdit, SIGNAL(returnPressed()), this, SLOT(editReturnPressed()));
connect(m_pChannelEdit, SIGNAL(textChanged(const QString &)), this, SLOT(editTextChanged(const QString &)));
+ pChannelLayout->addWidget(m_pChannelEdit, 1, 1);
szMsg = __tr2qs("Password");
szMsg.append(":");
- new QLabel(szMsg, m_pGroupBox);
+ QLabel * pPasswordLabel = new QLabel(szMsg, m_pGroupBox);
+ pChannelLayout->addWidget(pPasswordLabel, 2, 0);
m_pPass = new QLineEdit(m_pGroupBox);
m_pPass->setEchoMode(QLineEdit::Password);
+ pChannelLayout->addWidget(m_pPass, 2, 1);
g->addWidget(m_pGroupBox, 1, 0, 1, 2);