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/toolbareditor | |
| 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/toolbareditor')
| -rw-r--r-- | src/modules/toolbareditor/toolbareditor.cpp | 2 |
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); |
