diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
commit | 79b21d47bce1ee428affc97534cd8b257232a871 (patch) | |
tree | 0df1fa0109d9f2bcef932eda8b5c25b2e06669ed /kstart | |
parent | 9a898d493f493adbc404f7223043c85f3817472b (diff) | |
download | tdebase-79b21d47bce1ee428affc97534cd8b257232a871.tar.gz tdebase-79b21d47bce1ee428affc97534cd8b257232a871.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kstart')
-rw-r--r-- | kstart/kstart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kstart/kstart.cpp b/kstart/kstart.cpp index d1117548f..4adbd55bc 100644 --- a/kstart/kstart.cpp +++ b/kstart/kstart.cpp @@ -32,7 +32,7 @@ // some globals -static KProcess proc; +static TDEProcess proc; static TQCString windowtitle = 0; static TQCString windowclass = 0; static int desktop = 0; @@ -65,7 +65,7 @@ KStart::KStart() id.setupStartupEnv(); //finally execute the comand - if( proc.start(KProcess::DontCare) ) { + if( proc.start(TDEProcess::DontCare) ) { KStartupInfoData data; data.addPid( proc.pid() ); TQCString bin = proc.args().first(); |