summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-12 09:12:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-12 09:12:41 +0900
commitfb1e7c0ab5cd5355732fe668a9ce3210346a52db (patch)
tree9b6a75a58f2c240499ae55e93b61809adab66029
parent2eade492c4518a353e3a1607405eead3c90f5a1f (diff)
downloadkdpkg-fb1e7c0ab5cd5355732fe668a9ce3210346a52db.tar.gz
kdpkg-fb1e7c0ab5cd5355732fe668a9ce3210346a52db.zip
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kdpkg-install/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdpkg-install/console.cpp b/kdpkg-install/console.cpp
index fa404ce..d5586b3 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_OBJECT_NAME_STRING, "KParts::ReadOnlyPart" ) );
+ konsole = static_cast<KParts::Part*>( factory->create( TQT_TQOBJECT(konsoleFrame), "konsolepart", "TQObject", "KParts::ReadOnlyPart" ) );
terminal()->setAutoDestroy( true );
terminal()->setAutoStartShell( false );
konsole->widget()->setGeometry(0, 0, konsoleFrame->width(), konsoleFrame->height());