summaryrefslogtreecommitdiffstats
path: root/klinkstatus/src/global.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:51:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:51:30 -0600
commit29df04c24350cc76a41e2410d1c92445f9338b98 (patch)
treec2b9cde128e24275393a83d9eaec58b2ef12d109 /klinkstatus/src/global.h
parentc70534eef6085384ef7ddff369a154dbc8901917 (diff)
downloadtdewebdev-29df04c24350cc76a41e2410d1c92445f9338b98.tar.gz
tdewebdev-29df04c24350cc76a41e2410d1c92445f9338b98.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'klinkstatus/src/global.h')
-rw-r--r--klinkstatus/src/global.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/klinkstatus/src/global.h b/klinkstatus/src/global.h
index a77bcf30..77ed23eb 100644
--- a/klinkstatus/src/global.h
+++ b/klinkstatus/src/global.h
@@ -17,7 +17,7 @@ class TQCString;
class DCOPClient;
class KURL;
-class KProcess;
+class TDEProcess;
/**
@author Paulo Moura Guedes
@@ -44,9 +44,9 @@ private:
static void execCommand(TQString const& command);
private slots:
- void slotGetScriptOutput(KProcess* process, char* buffer, int buflen);
- void slotGetScriptError(KProcess* process, char* buffer, int buflen);
- void slotProcessExited(KProcess* process);
+ void slotGetScriptOutput(TDEProcess* process, char* buffer, int buflen);
+ void slotGetScriptError(TDEProcess* process, char* buffer, int buflen);
+ void slotProcessExited(TDEProcess* process);
void slotProcessTimeout();
private:
@@ -55,7 +55,7 @@ private:
DCOPClient* dcop_client_;
bool loop_started_;
TQString script_output_;
- KProcess* process_PS_;
+ TDEProcess* process_PS_;
};
#endif