diff options
author | Michele Calgaro <[email protected]> | 2024-05-14 12:36:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-14 12:36:29 +0900 |
commit | 43e38f2c0a00cdc052660fab01d32df2c7dc24b0 (patch) | |
tree | 308e002242744bef1db7382e8910a470932f3d12 /tdecore/ksock.h | |
parent | 562773a5f7befb7eac57e57d928cf223a82f97f0 (diff) | |
download | tdelibs-43e38f2c0a00cdc052660fab01d32df2c7dc24b0.tar.gz tdelibs-43e38f2c0a00cdc052660fab01d32df2c7dc24b0.zip |
Replace KDE_DEPRECATED with TDE_DEPRECATED
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdecore/ksock.h')
-rw-r--r-- | tdecore/ksock.h | 10 |
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: |