summaryrefslogtreecommitdiffstats
path: root/tdecore/ksock.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 /tdecore/ksock.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 'tdecore/ksock.h')
-rw-r--r--tdecore/ksock.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdecore/ksock.h b/tdecore/ksock.h
index 28d64a9dc..f562ece8f 100644
--- a/tdecore/ksock.h
+++ b/tdecore/ksock.h
@@ -92,20 +92,20 @@ public:
* Constructs a TDESocket with the provided file descriptor.
* @param _sock The file descriptor to use.
*/
- TDESocket( int _sock ) KDE_DEPRECATED;
+ TDESocket( int _sock ) TDE_DEPRECATED;
/**
* Creates a socket and connects to a host.
* @param _host The remote host to which to connect.
* @param _port The port on the remote host.
* @param timeOut The number of seconds waiting for connect (default 30).
*/
- TDESocket( const char *_host, unsigned short int _port, int timeOut = 30) KDE_DEPRECATED;
+ TDESocket( const char *_host, unsigned short int _port, int timeOut = 30) TDE_DEPRECATED;
/**
* Connects to a UNIX domain socket.
* @param _path The filename of the socket.
*/
- TDESocket( const char * _path ) KDE_DEPRECATED;
+ TDESocket( const char * _path ) TDE_DEPRECATED;
/**
* Destructor. Closes the socket if it is still open.
@@ -150,7 +150,7 @@ public:
* instead
* @deprecated
*/
- unsigned long ipv4_addr() KDE_DEPRECATED;
+ unsigned long ipv4_addr() TDE_DEPRECATED;
// BCI: remove in libtdecore.so.4
/**
@@ -158,7 +158,7 @@ public:
* Don't use this in new programs. Use KExtendedSocket::lookup
* @deprecated
*/
- static bool initSockaddr(ksockaddr_in *server_name, const char *hostname, unsigned short int port, int domain = PF_INET) KDE_DEPRECATED;
+ static bool initSockaddr(ksockaddr_in *server_name, const char *hostname, unsigned short int port, int domain = PF_INET) TDE_DEPRECATED;
#endif
signals: