diff options
author | Michele Calgaro <[email protected]> | 2023-12-15 12:42:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-15 12:42:28 +0900 |
commit | f51c73e4effa1a9c879bac1e625a3d63f478abab (patch) | |
tree | e2587f7da72f3817ee149572d00e9d822308a1d2 | |
parent | ce81dc9acdb3c219671bc7196ab34a724fca406d (diff) | |
download | kdpkg-f51c73e4effa1a9c879bac1e625a3d63f478abab.tar.gz kdpkg-f51c73e4effa1a9c879bac1e625a3d63f478abab.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | kdpkg-install/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<KParts::Part*>( factory->create( TQT_TQOBJECT(konsoleFrame), "konsolepart", "TQObject", "KParts::ReadOnlyPart" ) ); + konsole = static_cast<KParts::Part*>( factory->create( konsoleFrame, "konsolepart", "TQObject", "KParts::ReadOnlyPart" ) ); terminal()->setAutoDestroy( true ); terminal()->setAutoStartShell( false ); konsole->widget()->setGeometry(0, 0, konsoleFrame->width(), konsoleFrame->height()); |