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/raweditor | |
| 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/raweditor')
| -rw-r--r-- | src/modules/raweditor/raweditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/raweditor/raweditor.cpp b/src/modules/raweditor/raweditor.cpp index 2a4f5d649..7ae9b417c 100644 --- a/src/modules/raweditor/raweditor.cpp +++ b/src/modules/raweditor/raweditor.cpp @@ -71,7 +71,7 @@ const QPixmap * KviRawHandlerListViewItem::pixmap(int col) const KviRawEditor::KviRawEditor(QWidget * par) : QWidget(par,"raw_event_editor") { - QGridLayout * l = new QGridLayout(this,1,1,2,2); + QGridLayout * l = new QGridLayout(this); QSplitter * spl = new QSplitter(Qt::Horizontal,this,"raweditorv"); spl->setOpaqueResize(false); l->addWidget(spl,0,0); @@ -445,7 +445,7 @@ KviRawEditorWindow::KviRawEditorWindow(KviFrame * lpFrm) m_pEditor = new KviRawEditor(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())); |
