From ed184e8a40a61c38536ba6b2ab3453dffe7937e5 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 27 Jan 2026 12:24:23 +0900 Subject: Fix conversion of TQString to const char* Signed-off-by: Michele Calgaro --- src/modules/channelsjoin/channelsjoinwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/channelsjoin/channelsjoinwindow.cpp') 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 * d = g_pRegisteredChannelDataBase->channelDict(); + KviPointerHashTable * d = g_pRegisteredChannelDataBase->channelDict(); if(d) { - KviPointerHashTableIterator it(*d); + KviPointerHashTableIterator it(*d); while(it.current()) { chld = new KviTalListViewItem(par,it.currentKey()); -- cgit v1.2.3