diff options
| author | 2007-04-12 18:31:02 +0000 | |
|---|---|---|
| committer | 2007-04-12 18:31:02 +0000 | |
| commit | 68f6c97cdd6994e7193e831ac7c3691ed61dba71 (patch) | |
| tree | 28a1891b84a292dae0c7c5ff14e8770e9633290c /src/modules | |
| parent | added setAttribute to widget classes (QT4 only) (diff) | |
| download | KVIrc-68f6c97cdd6994e7193e831ac7c3691ed61dba71.tar.gz KVIrc-68f6c97cdd6994e7193e831ac7c3691ed61dba71.tar.bz2 KVIrc-68f6c97cdd6994e7193e831ac7c3691ed61dba71.zip | |
more QT4 fix: QSplitter
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@484 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/actioneditor/actioneditor.cpp | 2 | ||||
| -rw-r--r-- | src/modules/aliaseditor/aliaseditor.cpp | 1 | ||||
| -rw-r--r-- | src/modules/eventeditor/eventeditor.cpp | 1 | ||||
| -rw-r--r-- | src/modules/popupeditor/popupeditor.cpp | 2 | ||||
| -rw-r--r-- | src/modules/raweditor/raweditor.cpp | 1 |
5 files changed, 7 insertions, 0 deletions
diff --git a/src/modules/actioneditor/actioneditor.cpp b/src/modules/actioneditor/actioneditor.cpp index 0c3e787ed..022fb8725 100644 --- a/src/modules/actioneditor/actioneditor.cpp +++ b/src/modules/actioneditor/actioneditor.cpp @@ -656,6 +656,8 @@ KviActionEditor::KviActionEditor(QWidget * par) #ifdef COMPILE_USE_QT4 m_pSplitter = new QSplitter(Qt::Horizontal,this); + m_pSplitter->setOpaqueResize(false); + #else m_pSplitter = new QSplitter(QSplitter::Horizontal,this); #endif diff --git a/src/modules/aliaseditor/aliaseditor.cpp b/src/modules/aliaseditor/aliaseditor.cpp index 03db1ad6f..6139b8512 100644 --- a/src/modules/aliaseditor/aliaseditor.cpp +++ b/src/modules/aliaseditor/aliaseditor.cpp @@ -212,6 +212,7 @@ KviAliasEditor::KviAliasEditor(QWidget * par) #ifdef COMPILE_USE_QT4 m_pSplitter = new QSplitter(Qt::Horizontal,this); + m_pSplitter->setOpaqueResize(false); #else m_pSplitter = new QSplitter(QSplitter::Horizontal,this); #endif diff --git a/src/modules/eventeditor/eventeditor.cpp b/src/modules/eventeditor/eventeditor.cpp index 0428ddb67..77e5b4361 100644 --- a/src/modules/eventeditor/eventeditor.cpp +++ b/src/modules/eventeditor/eventeditor.cpp @@ -71,6 +71,7 @@ KviEventEditor::KviEventEditor(QWidget * par) QGridLayout * l = new QGridLayout(this,1,1,2,2); QSplitter * spl = new QSplitter(Qt::Horizontal,this); + spl->setOpaqueResize(false); l->addWidget(spl,0,0); diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp index fbf27a931..53e1b9d29 100644 --- a/src/modules/popupeditor/popupeditor.cpp +++ b/src/modules/popupeditor/popupeditor.cpp @@ -204,6 +204,7 @@ KviSinglePopupEditor::KviSinglePopupEditor(QWidget * par) connect(m_pMenuButton,SIGNAL(clicked()),this,SLOT(testPopup())); #ifdef COMPILE_USE_QT4 QSplitter * spl = new QSplitter(Qt::Vertical,this,"popupeditor"); + spl->setOpaqueResize(false); #else QSplitter * spl = new QSplitter(QSplitter::Vertical,this); #endif @@ -1029,6 +1030,7 @@ KviPopupEditor::KviPopupEditor(QWidget * par) QGridLayout * l = new QGridLayout(this,1,1,0,2); #ifdef COMPILE_USE_QT4 QSplitter * spl = new QSplitter(Qt::Horizontal,this,"popupeditor"); + spl->setOpaqueResize(false); #else QSplitter * spl = new QSplitter(QSplitter::Horizontal,this); #endif diff --git a/src/modules/raweditor/raweditor.cpp b/src/modules/raweditor/raweditor.cpp index c85b383bc..bba9da924 100644 --- a/src/modules/raweditor/raweditor.cpp +++ b/src/modules/raweditor/raweditor.cpp @@ -76,6 +76,7 @@ KviRawEditor::KviRawEditor(QWidget * par) QGridLayout * l = new QGridLayout(this,1,1,2,2); #ifdef COMPILE_USE_QT4 QSplitter * spl = new QSplitter(Qt::Horizontal,this,"raweditorv"); + spl->setOpaqueResize(false); #else QSplitter * spl = new QSplitter(QSplitter::Horizontal,this); #endif |
