diff options
| author | 2008-09-19 17:58:43 +0000 | |
|---|---|---|
| committer | 2008-09-19 17:58:43 +0000 | |
| commit | e8d91812140a2a1fcb6a39d397c404a5dc79fdc8 (patch) | |
| tree | 2c75f9b40333e0372859b2374a728f2157de0fae /src/modules | |
| parent | quick fix in options dialog (need more work) (diff) | |
| download | KVIrc-e8d91812140a2a1fcb6a39d397c404a5dc79fdc8.tar.gz KVIrc-e8d91812140a2a1fcb6a39d397c404a5dc79fdc8.tar.bz2 KVIrc-e8d91812140a2a1fcb6a39d397c404a5dc79fdc8.zip | |
fixed signals/slot in options dialog
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2504 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/options/optw_messages.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/options/optw_messages.cpp b/src/modules/options/optw_messages.cpp index 4a8acd168..809cee6da 100644 --- a/src/modules/options/optw_messages.cpp +++ b/src/modules/options/optw_messages.cpp @@ -445,9 +445,9 @@ KviMessageColorsOptionsWidget::KviMessageColorsOptionsWidget(QWidget * parent) layout()->setRowStretch(0,1); layout()->setColumnStretch(0,1); - connect(m_pListView,SIGNAL(selectionChanged()),this,SLOT(itemChanged())); - connect(m_pForeListBox,SIGNAL(selectionChanged()),this,SLOT(colorChanged())); - connect(m_pBackListBox,SIGNAL(selectionChanged()),this,SLOT(colorChanged())); + connect(m_pListView,SIGNAL(itemSelectionChanged ()),this,SLOT(itemChanged())); + connect(m_pForeListBox,SIGNAL(itemSelectionChanged ()),this,SLOT(colorChanged())); + connect(m_pBackListBox,SIGNAL(itemSelectionChanged ()),this,SLOT(colorChanged())); itemChanged(); } |
