summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeio/tcpslavebase.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-14 12:36:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-14 17:38:14 +0900
commitf23f0ef919ad50e7ac02f1a965a424d1ed720237 (patch)
tree017c05041a88d9266805d44dcd5a6320bc9810be /tdeio/tdeio/tcpslavebase.h
parentcce9e894e0830062c147b9e039e61adc9cea5a66 (diff)
downloadtdelibs-f23f0ef919ad50e7ac02f1a965a424d1ed720237.tar.gz
tdelibs-f23f0ef919ad50e7ac02f1a965a424d1ed720237.zip
Replace KDE_DEPRECATED with TDE_DEPRECATED
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 43e38f2c0a00cdc052660fab01d32df2c7dc24b0)
Diffstat (limited to 'tdeio/tdeio/tcpslavebase.h')
-rw-r--r--tdeio/tdeio/tcpslavebase.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/tdeio/tdeio/tcpslavebase.h b/tdeio/tdeio/tcpslavebase.h
index 4903dd7ac..a0a8620fc 100644
--- a/tdeio/tdeio/tcpslavebase.h
+++ b/tdeio/tdeio/tcpslavebase.h
@@ -60,48 +60,48 @@ protected:
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED ssize_t Write(const void *data, ssize_t len) { return write( data, len ); }
+ TDE_DEPRECATED ssize_t Write(const void *data, ssize_t len) { return write( data, len ); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED ssize_t Read(void *data, ssize_t len) { return read( data, len ); }
+ TDE_DEPRECATED ssize_t Read(void *data, ssize_t len) { return read( data, len ); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED ssize_t ReadLine(char *data, ssize_t len) { return readLine( data, len ); }
+ TDE_DEPRECATED ssize_t ReadLine(char *data, ssize_t len) { return readLine( data, len ); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED unsigned short int GetPort(unsigned short int p) { return port(p); }
+ TDE_DEPRECATED unsigned short int GetPort(unsigned short int p) { return port(p); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED bool ConnectToHost( const TQString &host, unsigned int port,
+ TDE_DEPRECATED bool ConnectToHost( const TQString &host, unsigned int port,
bool sendError ) { return connectToHost( host, port, sendError ); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED void CloseDescriptor() { closeDescriptor(); }
+ TDE_DEPRECATED void CloseDescriptor() { closeDescriptor(); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED bool AtEOF() { return atEnd(); }
+ TDE_DEPRECATED bool AtEOF() { return atEnd(); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED bool InitializeSSL() { return initializeSSL(); }
+ TDE_DEPRECATED bool InitializeSSL() { return initializeSSL(); }
/**
* @deprecated Due to inconsistency with KDE naming convention.
*/
- KDE_DEPRECATED void CleanSSL() { cleanSSL(); }
+ TDE_DEPRECATED void CleanSSL() { cleanSSL(); }
#endif
/**