summaryrefslogtreecommitdiffstats
path: root/src/modules/term/termwidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-02-21 11:03:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-02-21 20:54:51 +0900
commit4d13f1a2267c6864b98c5a46631b1e2bbe3c024a (patch)
tree72d524c66325b2c554bafcf86225d26664373444 /src/modules/term/termwidget.cpp
parentf14a1c5c8c988ef6901545040aabedf8027ecc18 (diff)
downloadkvirc-feat/more-fixes-for-cmake.tar.gz
kvirc-feat/more-fixes-for-cmake.zip
Fix conversion of TQString to const char* (modules)feat/more-fixes-for-cmake
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/term/termwidget.cpp')
-rw-r--r--src/modules/term/termwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/term/termwidget.cpp b/src/modules/term/termwidget.cpp
index e2eb8865..d3933f36 100644
--- a/src/modules/term/termwidget.cpp
+++ b/src/modules/term/termwidget.cpp
@@ -88,12 +88,12 @@ KviTermWidget::KviTermWidget(TQWidget * par,KviFrame * lpFrm,bool bIsStandalone)
// tqDebug("Widget %d",m_pKonsoleWidget);
} else {
m_pKonsoleWidget = new TQLabel(this,
- __tr2qs("Can't create the terminal emulation part"));
+ __tr2qs("Can't create the terminal emulation part").utf8().data());
}
} else {
m_pKonsoleWidget = new TQLabel(this,
- __tr2qs("Can't retrieve the terminal emulation factory"));
+ __tr2qs("Can't retrieve the terminal emulation factory").utf8().data());
}
}