diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:48:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:48:31 -0600 |
commit | c48e769eb275917717e2b55eb869f7e559293ac8 (patch) | |
tree | 8f650b907e21c918b826f854dbe1c8174cc2c0c6 /krdc/rdp/krdpview.h | |
parent | 8011d84f483f3628f3f04ea5cb2c1c3c86b2dba7 (diff) | |
download | tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.tar.gz tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'krdc/rdp/krdpview.h')
-rw-r--r-- | krdc/rdp/krdpview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krdc/rdp/krdpview.h b/krdc/rdp/krdpview.h index edab5870..46a2cbf9 100644 --- a/krdc/rdp/krdpview.h +++ b/krdc/rdp/krdpview.h @@ -28,7 +28,7 @@ #define TCP_PORT_RDP 3389 #define RDP_LOGON_NORMAL 0x33 -class KProcess; +class TDEProcess; class KRdpView; class RdpContainer : public QXEmbed @@ -103,13 +103,13 @@ class KRdpView : public KRemoteView bool m_quitFlag; // if set: die TQString m_clientVersion; // version number returned by rdesktop RdpContainer *m_container; // container for the rdesktop window - KProcess *m_process; // rdesktop process + TDEProcess *m_process; // rdesktop process private slots: void connectionOpened(WId window); // called if rdesktop started void connectionClosed(); // called if rdesktop quits - void processDied(KProcess *); // called if rdesktop dies - void receivedStderr(KProcess *proc, char *buffer, int buflen); + void processDied(TDEProcess *); // called if rdesktop dies + void receivedStderr(TDEProcess *proc, char *buffer, int buflen); // catches rdesktop debug output }; |