diff options
| author | 2008-11-01 18:49:12 +0000 | |
|---|---|---|
| committer | 2008-11-01 18:49:12 +0000 | |
| commit | 9c9aa2618773e8fd444cc46d4587c459d0a567a8 (patch) | |
| tree | 58a92fa09ce2a7016b3971030b6ab6f63687f35a /src/modules/options/optw_proxy.cpp | |
| parent | updated po{,t} files (diff) | |
| download | KVIrc-9c9aa2618773e8fd444cc46d4587c459d0a567a8.tar.gz KVIrc-9c9aa2618773e8fd444cc46d4587c459d0a567a8.tar.bz2 KVIrc-9c9aa2618773e8fd444cc46d4587c459d0a567a8.zip | |
cleaned tal_treewidget , hopefully re-connecting again all the signal/slot pairs
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2807 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/options/optw_proxy.cpp')
| -rw-r--r-- | src/modules/options/optw_proxy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/options/optw_proxy.cpp b/src/modules/options/optw_proxy.cpp index 5cd2b5bee..22d5ac885 100644 --- a/src/modules/options/optw_proxy.cpp +++ b/src/modules/options/optw_proxy.cpp @@ -72,8 +72,8 @@ KviProxyOptionsWidget::KviProxyOptionsWidget(QWidget * parent) m_pTreeWidget->setAllColumnsShowFocus(true); m_pTreeWidget->setSelectionMode(QAbstractItemView::SingleSelection); - connect(m_pTreeWidget,SIGNAL(currentItemChanged(KviTalTreeWidgetItem *,KviTalTreeWidgetItem *)), - this,SLOT(currentItemChanged(KviTalTreeWidgetItem *,KviTalTreeWidgetItem *))); + connect(m_pTreeWidget,SIGNAL(currentItemChanged(QTreeWidgetItem *,QTreeWidgetItem *)), + this,SLOT(currentItemChanged(QTreeWidgetItem *,QTreeWidgetItem *))); m_pTreeWidget->setContextMenuPolicy(Qt::CustomContextMenu); connect(m_pTreeWidget,SIGNAL(customContextMenuRequested(const QPoint &)), this,SLOT(customContextMenuRequested(const QPoint &))); @@ -170,7 +170,7 @@ void KviProxyOptionsWidget::fillProxyList() if(!(g_pProxyDataBase->currentProxy()))currentItemChanged(0,0); } -void KviProxyOptionsWidget::currentItemChanged(KviTalTreeWidgetItem *it,KviTalTreeWidgetItem *prev) +void KviProxyOptionsWidget::currentItemChanged(QTreeWidgetItem *it,QTreeWidgetItem *prev) { if(m_pLastEditedItem)saveLastItem(); m_pLastEditedItem = (KviProxyOptionsTreeWidgetItem *)it; |
