summaryrefslogtreecommitdiffstats
path: root/tdesu
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-14 15:08:54 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:34:30 +0900
commit834496cf73084adeb3959b6e2c11f104955bb69a (patch)
tree4e9221c9c4bcaa2c2681f3e255b0c771379c379c /tdesu
parent1a5b54f42c0218aef7def4bc2d5cbcc0ed6cfadd (diff)
downloadtdebase-834496cf73084adeb3959b6e2c11f104955bb69a.tar.gz
tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdesu')
-rw-r--r--tdesu/ChangeLog2
-rw-r--r--tdesu/tdesu/tdesu.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/tdesu/ChangeLog b/tdesu/ChangeLog
index f9bd05eb5..3d01f2e01 100644
--- a/tdesu/ChangeLog
+++ b/tdesu/ChangeLog
@@ -50,7 +50,7 @@ Wed, 8 Sep 99 Geert Jansen <[email protected]>
Wed, 1 Sep 99 Geert Jansen <[email protected]>
- * Deferred instantiation of kapp in tdesu.cpp.
+ * Deferred instantiation of tdeApp in tdesu.cpp.
* Finished porting to KDE2.
Sun, 29 Aug 99 Geert Jansen <[email protected]>
diff --git a/tdesu/tdesu/tdesu.cpp b/tdesu/tdesu/tdesu.cpp
index b36b0513b..fef3d76a4 100644
--- a/tdesu/tdesu/tdesu.cpp
+++ b/tdesu/tdesu/tdesu.cpp
@@ -121,7 +121,7 @@ int main(int argc, char *argv[])
{
TDEStartupInfoId id;
- id.initId( kapp->startupId());
+ id.initId( tdeApp->startupId());
id.setupStartupEnv(); // make DESKTOP_STARTUP_ID env. var. available again
}
@@ -272,7 +272,7 @@ static int startApp()
QCStringList env;
TQCString options;
- env << ( "DESKTOP_STARTUP_ID=" + kapp->startupId());
+ env << ( "DESKTOP_STARTUP_ID=" + tdeApp->startupId());
if (pw->pw_uid)
{
@@ -348,7 +348,7 @@ static int startApp()
if (needpw)
{
TDEStartupInfoId id;
- id.initId( kapp->startupId());
+ id.initId( tdeApp->startupId());
TDEStartupInfoData data;
data.setSilent( TDEStartupInfoData::Yes );
TDEStartupInfo::sendChange( id, data );
@@ -380,7 +380,7 @@ static int startApp()
}
// Some events may need to be handled (like a button animation)
- kapp->processEvents();
+ tdeApp->processEvents();
// Run command
if (!change_uid)