From f51c73e4effa1a9c879bac1e625a3d63f478abab Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 15 Dec 2023 12:42:28 +0900 Subject: [PATCH] Replace various '#define' strings - part 6 Signed-off-by: Michele Calgaro --- kdpkg-install/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdpkg-install/console.cpp b/kdpkg-install/console.cpp index d5586b3..0a28e42 100644 --- a/kdpkg-install/console.cpp +++ b/kdpkg-install/console.cpp @@ -93,7 +93,7 @@ void console::loadKonsole() KLibFactory* factory = KLibLoader::self()->factory( "libsanekonsolepart" ); if (!factory) factory = KLibLoader::self()->factory( "libkonsolepart" ); - konsole = static_cast( factory->create( TQT_TQOBJECT(konsoleFrame), "konsolepart", "TQObject", "KParts::ReadOnlyPart" ) ); + konsole = static_cast( factory->create( konsoleFrame, "konsolepart", "TQObject", "KParts::ReadOnlyPart" ) ); terminal()->setAutoDestroy( true ); terminal()->setAutoStartShell( false ); konsole->widget()->setGeometry(0, 0, konsoleFrame->width(), konsoleFrame->height());