diff options
| author | 2008-04-30 10:28:19 +0000 | |
|---|---|---|
| committer | 2008-04-30 10:28:19 +0000 | |
| commit | 7a03271a4a4d26c5213a4b4c46f0eee6410e88f4 (patch) | |
| tree | 4459594873310eae967f6c2a9404f6772353ef7e /src/modules/popupeditor/popupeditor.cpp | |
| parent | removed useless class; fixed cmake/automake rules; little fixes around (diff) | |
| download | KVIrc-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/popupeditor/popupeditor.cpp')
| -rw-r--r-- | src/modules/popupeditor/popupeditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp index 8b648a513..89e160d3c 100644 --- a/src/modules/popupeditor/popupeditor.cpp +++ b/src/modules/popupeditor/popupeditor.cpp @@ -183,7 +183,7 @@ KviSinglePopupEditor::KviSinglePopupEditor(QWidget * par) m_pClipboard = 0; m_pTestPopup = 0; - QGridLayout * g = new QGridLayout(this,7,3,2,2); + QGridLayout * g = new QGridLayout(this); m_pNameEditor = new QLineEdit(this); QToolTip::add(m_pNameEditor,__tr2qs("Popup name")); @@ -989,7 +989,7 @@ void KviMenuListViewItem::replacePopup(KviKvsPopupMenu * popup) KviPopupEditor::KviPopupEditor(QWidget * par) : QWidget(par) { - QGridLayout * l = new QGridLayout(this,1,1,0,2); + QGridLayout * l = new QGridLayout(this); QSplitter * spl = new QSplitter(Qt::Horizontal,this,"popupeditor"); spl->setOpaqueResize(false); l->addWidget(spl,0,0); @@ -1276,7 +1276,7 @@ KviPopupEditorWindow::KviPopupEditorWindow(KviFrame * lpFrm) m_pEditor = new KviPopupEditor(this); m_pBase = new QWidget(this); - QGridLayout * g = new QGridLayout(m_pBase,1,4,4,4); + QGridLayout * g = new QGridLayout(m_pBase); QPushButton * btn = new QPushButton(__tr2qs("&OK"),m_pBase); connect(btn,SIGNAL(clicked()),this,SLOT(okClicked())); |
