diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 21:49:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 21:49:59 -0600 |
commit | 93943a849d1abc2003ceefe294dc419b9927f7d0 (patch) | |
tree | a6c2696cdd5c3b5339f2b6f821062a32cf46ae53 /kstart | |
parent | 01c60a267846a8712bca34218ecf7da57566c049 (diff) | |
download | tdebase-93943a849d1abc2003ceefe294dc419b9927f7d0.tar.gz tdebase-93943a849d1abc2003ceefe294dc419b9927f7d0.zip |
Rename KStartup for enhanced compatibility with KDE4
Diffstat (limited to 'kstart')
-rw-r--r-- | kstart/kstart.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kstart/kstart.cpp b/kstart/kstart.cpp index 4adbd55bc..61961a390 100644 --- a/kstart/kstart.cpp +++ b/kstart/kstart.cpp @@ -60,21 +60,21 @@ KStart::KStart() twinmodule->doNotManage( windowtitle ); } // propagate the app startup notification info to the started app - KStartupInfoId id; + TDEStartupInfoId id; id.initId( kapp->startupId()); id.setupStartupEnv(); //finally execute the comand if( proc.start(TDEProcess::DontCare) ) { - KStartupInfoData data; + TDEStartupInfoData data; data.addPid( proc.pid() ); TQCString bin = proc.args().first(); data.setName( bin ); data.setBin( bin.mid( bin.findRev( '/' ) + 1 )); - KStartupInfo::sendChange( id, data ); + TDEStartupInfo::sendChange( id, data ); } else - KStartupInfo::sendFinish( id ); // failed to start + TDEStartupInfo::sendFinish( id ); // failed to start TQTimer::singleShot( useRule ? 0 : 120 * 1000, kapp, TQT_SLOT( quit())); } |