diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-01-27 12:24:23 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-02-03 18:46:43 +0900 |
| commit | ed184e8a40a61c38536ba6b2ab3453dffe7937e5 (patch) | |
| tree | bbd710b568b806847dd7307adc4557ca59f9f22e /src/modules/channelsjoin/channelsjoinwindow.cpp | |
| parent | 226080f88c5b3c47626cb46314e359de188c2249 (diff) | |
| download | kvirc-ed184e8a40a61c38536ba6b2ab3453dffe7937e5.tar.gz kvirc-ed184e8a40a61c38536ba6b2ab3453dffe7937e5.zip | |
Fix conversion of TQString to const char*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/channelsjoin/channelsjoinwindow.cpp')
| -rw-r--r-- | src/modules/channelsjoin/channelsjoinwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/channelsjoin/channelsjoinwindow.cpp b/src/modules/channelsjoin/channelsjoinwindow.cpp index 57c31930..33664177 100644 --- a/src/modules/channelsjoin/channelsjoinwindow.cpp +++ b/src/modules/channelsjoin/channelsjoinwindow.cpp @@ -174,10 +174,10 @@ void KviChannelsJoinWindow::fillListView() par = new KviTalListViewItem(m_pListView,__tr2qs("Registered Channels")); par->setOpen(true); - KviPointerHashTable<const char *,KviRegisteredChannelList> * d = g_pRegisteredChannelDataBase->channelDict(); + KviPointerHashTable<TQString,KviRegisteredChannelList> * d = g_pRegisteredChannelDataBase->channelDict(); if(d) { - KviPointerHashTableIterator<const char *,KviRegisteredChannelList> it(*d); + KviPointerHashTableIterator<TQString,KviRegisteredChannelList> it(*d); while(it.current()) { chld = new KviTalListViewItem(par,it.currentKey()); |
