diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:18:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:18:41 -0600 |
commit | 352b2ef6c06332062d35211d7f49942315d2f36a (patch) | |
tree | 842a828f1f3c6686c33cd8512d00b80d6feaefdd /sip/kio/slave.sip | |
parent | 8bd906c03534d2ad9cff2f22e957bf30987c99a9 (diff) | |
download | pytde-352b2ef6c06332062d35211d7f49942315d2f36a.tar.gz pytde-352b2ef6c06332062d35211d7f49942315d2f36a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'sip/kio/slave.sip')
-rw-r--r-- | sip/kio/slave.sip | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sip/kio/slave.sip b/sip/kio/slave.sip index e2d4961..1acea8d 100644 --- a/sip/kio/slave.sip +++ b/sip/kio/slave.sip @@ -23,10 +23,10 @@ // If not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -namespace KIO +namespace TDEIO { -class Slave : KIO::SlaveInterface +class Slave : TDEIO::SlaveInterface { %TypeHeaderCode #include <slave.h> @@ -36,19 +36,19 @@ class Slave : KIO::SlaveInterface protected: %If ( KDE_3_2_0 - ) - Slave (bool, KServerSocket*, const TQString&, const TQString&); + Slave (bool, TDEServerSocket*, const TQString&, const TQString&); %End public: - Slave (KServerSocket*, const TQString&, const TQString&); + Slave (TDEServerSocket*, const TQString&, const TQString&); void setPID (pid_t); int slave_pid (); void kill (); bool isAlive (); void setHost (const TQString&, int, const TQString&, const TQString&); void resetHost (); - void setConfig (const KIO::MetaData&); + void setConfig (const TDEIO::MetaData&); TQString protocol (); void setProtocol (const TQString&); TQString slaveProtocol (); @@ -56,8 +56,8 @@ public: int port (); TQString user (); TQString passwd (); - static KIO::Slave* createSlave (const TQString&, const KURL&, int& /Out/, TQString& /Out/); - static KIO::Slave* holdSlave (const TQString&, const KURL&); + static TDEIO::Slave* createSlave (const TQString&, const KURL&, int& /Out/, TQString& /Out/); + static TDEIO::Slave* holdSlave (const TQString&, const KURL&); void suspend (); void resume (); bool suspended (); @@ -71,17 +71,17 @@ public: void setIdle (); bool isConnected (); void setConnected (bool); - KIO::Connection* connection (); + TDEIO::Connection* connection (); void ref (); void deref (); public slots: - void accept (KSocket*); + void accept (TDESocket*); void gotInput (); void timeout (); signals: - void slaveDied (KIO::Slave*); + void slaveDied (TDEIO::Slave*); protected: void unlinkSocket (); @@ -91,5 +91,5 @@ protected: }; // class Slave -}; // namespace KIO +}; // namespace TDEIO |