summaryrefslogtreecommitdiffstats
path: root/src/modules/toolbareditor/toolbareditor.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-27 12:24:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-02-03 18:46:43 +0900
commited184e8a40a61c38536ba6b2ab3453dffe7937e5 (patch)
treebbd710b568b806847dd7307adc4557ca59f9f22e /src/modules/toolbareditor/toolbareditor.cpp
parent226080f88c5b3c47626cb46314e359de188c2249 (diff)
downloadkvirc-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/toolbareditor/toolbareditor.cpp')
-rw-r--r--src/modules/toolbareditor/toolbareditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/toolbareditor/toolbareditor.cpp b/src/modules/toolbareditor/toolbareditor.cpp
index e93bfe1f..c33ba952 100644
--- a/src/modules/toolbareditor/toolbareditor.cpp
+++ b/src/modules/toolbareditor/toolbareditor.cpp
@@ -199,7 +199,7 @@ KviCustomToolBarPropertiesDialog::~KviCustomToolBarPropertiesDialog()
void KviCustomToolBarPropertiesDialog::iconSelected(const TQString &szIconId)
{
- TQPixmap * p = g_pIconManager->getImage(szIconId.utf8().data());
+ TQPixmap * p = g_pIconManager->getImage(szIconId);
if(p)
{
m_pIconButton->setPixmap(*p);