diff options
| author | 2008-09-29 18:19:46 +0000 | |
|---|---|---|
| committer | 2008-09-29 18:19:46 +0000 | |
| commit | 90de0c6d3bb2cc8954e526a141f44d6d045de7c7 (patch) | |
| tree | 3d1b02982190e86883d9bd724f90ab1530c57c15 /src/modules | |
| parent | fix for #145 (applies only to 4.0) (diff) | |
| download | KVIrc-90de0c6d3bb2cc8954e526a141f44d6d045de7c7.tar.gz KVIrc-90de0c6d3bb2cc8954e526a141f44d6d045de7c7.tar.bz2 KVIrc-90de0c6d3bb2cc8954e526a141f44d6d045de7c7.zip | |
fixed small problem introduced porting the channelsjoin window
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2602 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/channelsjoin/channelsjoinwindow.cpp | 4 | ||||
| -rw-r--r-- | src/modules/channelsjoin/channelsjoinwindow.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/channelsjoin/channelsjoinwindow.cpp b/src/modules/channelsjoin/channelsjoinwindow.cpp index 7670f63f5..5be3b5672 100644 --- a/src/modules/channelsjoin/channelsjoinwindow.cpp +++ b/src/modules/channelsjoin/channelsjoinwindow.cpp @@ -194,7 +194,7 @@ void KviChannelsJoinWindow::fillListView() } } -void KviChannelsJoinWindow::itemClicked(QTreeWidgetItem * it) +void KviChannelsJoinWindow::itemClicked(QTreeWidgetItem * it, int) { if(!it) return; @@ -206,7 +206,7 @@ void KviChannelsJoinWindow::itemClicked(QTreeWidgetItem * it) enableJoin(); } -void KviChannelsJoinWindow::itemDoubleClicked(QTreeWidgetItem * it) +void KviChannelsJoinWindow::itemDoubleClicked(QTreeWidgetItem * it, int) { if(!it) return; diff --git a/src/modules/channelsjoin/channelsjoinwindow.h b/src/modules/channelsjoin/channelsjoinwindow.h index f0677a6ff..61f66630b 100644 --- a/src/modules/channelsjoin/channelsjoinwindow.h +++ b/src/modules/channelsjoin/channelsjoinwindow.h @@ -105,14 +105,14 @@ protected slots: * \param it The item clicked * \return void */ - void itemClicked(QTreeWidgetItem * it); + void itemClicked(QTreeWidgetItem * it, int); /** * \brief Called when an item is double-clicked * \param it The item clicked * \return void */ - void itemDoubleClicked(QTreeWidgetItem * it); + void itemDoubleClicked(QTreeWidgetItem * it, int); /** * \brief Called when the return is pressed |
