aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/toolbareditor/toolbareditor.cpp
diff options
context:
space:
mode:
authorGravatar Noldor2008-04-30 10:28:19 +0000
committerGravatar Noldor2008-04-30 10:28:19 +0000
commit7a03271a4a4d26c5213a4b4c46f0eee6410e88f4 (patch)
tree4459594873310eae967f6c2a9404f6772353ef7e /src/modules/toolbareditor/toolbareditor.cpp
parentremoved useless class; fixed cmake/automake rules; little fixes around (diff)
downloadKVIrc-7a03271a4a4d26c5213a4b4c46f0eee6410e88f4.tar.gz
KVIrc-7a03271a4a4d26c5213a4b4c46f0eee6410e88f4.tar.bz2
KVIrc-7a03271a4a4d26c5213a4b4c46f0eee6410e88f4.zip
Removed obsolete QGridLayout QT3 constructor.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1626 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/toolbareditor/toolbareditor.cpp')
-rw-r--r--src/modules/toolbareditor/toolbareditor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/toolbareditor/toolbareditor.cpp b/src/modules/toolbareditor/toolbareditor.cpp
index e74c80508..7b8ed1188 100644
--- a/src/modules/toolbareditor/toolbareditor.cpp
+++ b/src/modules/toolbareditor/toolbareditor.cpp
@@ -125,7 +125,7 @@ KviCustomToolBarPropertiesDialog::KviCustomToolBarPropertiesDialog(QWidget * p,c
setWindowTitle(__tr2qs("ToolBar Properties"));
setIcon(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_TOOLBAR)));
- QGridLayout * g = new QGridLayout(this,5,6,5,3);
+ QGridLayout * g = new QGridLayout(this);
QLabel * l = new QLabel(szText,this);
g->addMultiCellWidget(l,0,0,0,5);
@@ -152,7 +152,7 @@ KviCustomToolBarPropertiesDialog::KviCustomToolBarPropertiesDialog(QWidget * p,c
iconSelected(szIconId);
m_pAdvanced = new QWidget(this);
- QGridLayout * ag = new QGridLayout(m_pAdvanced,1,2,0,3);
+ QGridLayout * ag = new QGridLayout(m_pAdvanced);
l = new QLabel(__tr2qs("Id") + ":",m_pAdvanced);
l->setMinimumWidth(100);
@@ -282,7 +282,7 @@ KviCustomizeToolBarsDialog::KviCustomizeToolBarsDialog(QWidget * p)
m_pInstance = this;
- QGridLayout * g = new QGridLayout(this,8,2,4,5);
+ QGridLayout * g = new QGridLayout(this);
m_pDrawer = new KviActionDrawer(this);
g->addMultiCellWidget(m_pDrawer,0,6,0,0);