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/about | |
| 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/about')
| -rw-r--r-- | src/modules/about/aboutdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/about/aboutdialog.cpp b/src/modules/about/aboutdialog.cpp index 69aeaba2d..9ae053e1a 100644 --- a/src/modules/about/aboutdialog.cpp +++ b/src/modules/about/aboutdialog.cpp @@ -86,7 +86,7 @@ KviAboutDialog::KviAboutDialog() QPixmap pix(buffer.ptr()); QWidget * w = new QWidget(this); - QGridLayout * g = new QGridLayout(w,2,1,4,8); + QGridLayout * g = new QGridLayout(w); QLabel * l = new QLabel(w); l->setFrameStyle(QFrame::WinPanel | QFrame::Sunken); @@ -108,7 +108,7 @@ KviAboutDialog::KviAboutDialog() // Info tab w = new QWidget(this); - g = new QGridLayout(w,1,1,4,8); + g = new QGridLayout(w); KviTalTextEdit * v = new KviTalTextEdit(w); v->setReadOnly(true); @@ -184,7 +184,7 @@ KviAboutDialog::KviAboutDialog() // Honor & Glory tab w = new QWidget(this); - g = new QGridLayout(w,1,1,4,8); + g = new QGridLayout(w); v = new KviTalTextEdit(w); v->setReadOnly(true); @@ -197,7 +197,7 @@ KviAboutDialog::KviAboutDialog() // License tab w = new QWidget(this); - g = new QGridLayout(w,1,1,4,8); + g = new QGridLayout(w); v = new KviTalTextEdit(w); v->setReadOnly(true); |
