From 16d42ec4616a84b046cd71f805a009b792a93ec9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 21 Feb 2026 11:03:45 +0900 Subject: Fix conversion of TQString to const char* (modules) Signed-off-by: Michele Calgaro --- src/modules/term/termwidget.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/modules/term/termwidget.cpp') diff --git a/src/modules/term/termwidget.cpp b/src/modules/term/termwidget.cpp index e2eb8865..f0a9c24a 100644 --- a/src/modules/term/termwidget.cpp +++ b/src/modules/term/termwidget.cpp @@ -87,13 +87,11 @@ KviTermWidget::KviTermWidget(TQWidget * par,KviFrame * lpFrm,bool bIsStandalone) connect(m_pKonsoleWidget,TQ_SIGNAL(destroyed()),this,TQ_SLOT(konsoleDestroyed())); // tqDebug("Widget %d",m_pKonsoleWidget); } else { - m_pKonsoleWidget = new TQLabel(this, - __tr2qs("Can't create the terminal emulation part")); + m_pKonsoleWidget = new TQLabel(__tr2qs("Can't create the terminal emulation part"), this); } } else { - m_pKonsoleWidget = new TQLabel(this, - __tr2qs("Can't retrieve the terminal emulation factory")); + m_pKonsoleWidget = new TQLabel(__tr2qs("Can't retrieve the terminal emulation factory"), this); } } -- cgit v1.2.3