summaryrefslogtreecommitdiffstats
path: root/src/modules/popupeditor
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-20 19:28:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-24 22:22:51 +0900
commite1455188ea48c503338917da620084af4e0832a8 (patch)
treee02804edf79511d971b2217097d58d2fe67f4d25 /src/modules/popupeditor
parent227ad49e424f51a2d65f66e3816fea6ac1130246 (diff)
downloadkvirc-feat/various-fixes.tar.gz
kvirc-feat/various-fixes.zip
Fix conversion of TQString to const char*feat/various-fixes
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/popupeditor')
-rw-r--r--src/modules/popupeditor/popupeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp
index 1a5265c2..e405756c 100644
--- a/src/modules/popupeditor/popupeditor.cpp
+++ b/src/modules/popupeditor/popupeditor.cpp
@@ -163,7 +163,7 @@ void KviPopupListViewItem::setIcon(const TQString & szIcon)
case ExtMenu:
m_szIcon = szIcon;
{
- TQPixmap * pix = g_pIconManager->getImage(szIcon);
+ TQPixmap * pix = g_pIconManager->getImage(szIcon.local8Bit());
if(pix)setPixmap(0,*pix);
else setPixmap(0,TQPixmap());
}