addMultiCell(Widget|Layout|) => add(Widget|Layout|Item) with swapped params and with row/colspan instead of last row/col. This means that there are ~150 less deprecated warnings

svn path=/trunk/KDE/kdebase/workspace/; revision=531845
This commit is contained in:
Reinhold Kainhofer 2006-04-20 12:41:37 +00:00
parent a401b1a999
commit 82dff6627f

View file

@ -48,7 +48,7 @@ ModernSysConfig::ModernSysConfig(KConfig* conf, QWidget* parent) : QObject(paren
"handle at the lower right corner. This makes window resizing "
"easier, especially for trackballs and other mouse replacements "
"on laptops."));
layout->addMultiCellWidget(cbShowHandle, 0, 0, 0, 1);
layout->addWidget(cbShowHandle, 0, 0, 1, 2 );
connect(cbShowHandle, SIGNAL(clicked()), this, SLOT(slotSelectionChanged()));
sliderBox = new KVBox(handleBox);