summaryrefslogtreecommitdiffstats
path: root/src/network/ntqhostaddress.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/ntqhostaddress.h')
-rw-r--r--src/network/ntqhostaddress.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/network/ntqhostaddress.h b/src/network/ntqhostaddress.h
index 2ae4a8ea..e28e3c20 100644
--- a/src/network/ntqhostaddress.h
+++ b/src/network/ntqhostaddress.h
@@ -55,15 +55,15 @@
class TQHostAddressPrivate;
typedef struct {
- Q_UINT8 c[16];
+ TQ_UINT8 c[16];
} Q_IPV6ADDR;
class TQM_EXPORT_NETWORK TQHostAddress
{
public:
TQHostAddress();
- TQHostAddress( Q_UINT32 ip4Addr );
- TQHostAddress( Q_UINT8 *ip6Addr );
+ TQHostAddress( TQ_UINT32 ip4Addr );
+ TQHostAddress( TQ_UINT8 *ip6Addr );
TQHostAddress(const Q_IPV6ADDR &ip6Addr);
#ifndef QT_NO_STRINGLIST
TQHostAddress(const TQString &address);
@@ -73,16 +73,16 @@ public:
TQHostAddress & operator=( const TQHostAddress & );
- void setAddress( Q_UINT32 ip4Addr );
- void setAddress( Q_UINT8 *ip6Addr );
+ void setAddress( TQ_UINT32 ip4Addr );
+ void setAddress( TQ_UINT8 *ip6Addr );
#ifndef QT_NO_STRINGLIST
bool setAddress( const TQString& address );
#endif
bool isIp4Addr() const; // obsolete
- Q_UINT32 ip4Addr() const; // obsolete
+ TQ_UINT32 ip4Addr() const; // obsolete
bool isIPv4Address() const;
- Q_UINT32 toIPv4Address() const;
+ TQ_UINT32 toIPv4Address() const;
bool isIPv6Address() const;
Q_IPV6ADDR toIPv6Address() const;