aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2011-03-17 14:58:34 +0000
committerGravatar Szymon Tomasz Stefanek2011-03-17 14:58:34 +0000
commit58a7a8f63618688af442292ff9927ee720f3bd3f (patch)
tree66f6dff813abf7247a6b4c3444b717a6df7ee3e9 /src
parentStart generalizing the web package management interface (diff)
downloadKVIrc-58a7a8f63618688af442292ff9927ee720f3bd3f.tar.gz
KVIrc-58a7a8f63618688af442292ff9927ee720f3bd3f.tar.bz2
KVIrc-58a7a8f63618688af442292ff9927ee720f3bd3f.zip
More rearranging on the web package interface
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5619 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src')
-rw-r--r--src/kvirc/ui/KviWebPackageManagementDialog.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/kvirc/ui/KviWebPackageManagementDialog.cpp b/src/kvirc/ui/KviWebPackageManagementDialog.cpp
index 673a3a7a1..6b7687c62 100644
--- a/src/kvirc/ui/KviWebPackageManagementDialog.cpp
+++ b/src/kvirc/ui/KviWebPackageManagementDialog.cpp
@@ -65,17 +65,20 @@ KviWebPackageManagementDialog::KviWebPackageManagementDialog(
setWindowIcon(QIcon(*(g_pIconManager->getBigIcon(KVI_BIGICON_WWW))));
m_pLayout = new QVBoxLayout(this);
+ m_pLayout->setMargin(3);
+ m_pLayout->setSpacing(2);
- m_pFile = 0;
+ setLayout(m_pLayout);
+
+ m_pFtp = NULL;
+ m_pFile = NULL;
m_bBusy = false;
+
QWidget *pStatus = new QWidget(this);
m_pLayout->addWidget(pStatus);
+
QHBoxLayout *hbox= new QHBoxLayout(pStatus);
- // m_pLayout = new QVBoxLayout(this);
- m_pFtp = 0;
- m_pLayout->setMargin(3);
- m_pLayout->setSpacing(2);
- setLayout(m_pLayout);
+
m_pToolBar= new QToolBar(pStatus);
m_pProgressBar = new QProgressBar(pStatus);
m_pProgressBar->setMaximumWidth(220);