summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qhostaddress.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qhostaddress.3qt')
-rw-r--r--doc/man/man3/qhostaddress.3qt24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/qhostaddress.3qt b/doc/man/man3/qhostaddress.3qt
index 3835e421..2666b7d3 100644
--- a/doc/man/man3/qhostaddress.3qt
+++ b/doc/man/man3/qhostaddress.3qt
@@ -17,10 +17,10 @@ QHostAddress \- IP address
.BI "\fBQHostAddress\fR ()"
.br
.ti -1c
-.BI "\fBQHostAddress\fR ( Q_UINT32 ip4Addr )"
+.BI "\fBQHostAddress\fR ( TQ_UINT32 ip4Addr )"
.br
.ti -1c
-.BI "\fBQHostAddress\fR ( Q_UINT8 * ip6Addr )"
+.BI "\fBQHostAddress\fR ( TQ_UINT8 * ip6Addr )"
.br
.ti -1c
.BI "\fBQHostAddress\fR ( const Q_IPV6ADDR & ip6Addr )"
@@ -35,10 +35,10 @@ QHostAddress \- IP address
.BI "QHostAddress & \fBoperator=\fR ( const QHostAddress & address )"
.br
.ti -1c
-.BI "void \fBsetAddress\fR ( Q_UINT32 ip4Addr )"
+.BI "void \fBsetAddress\fR ( TQ_UINT32 ip4Addr )"
.br
.ti -1c
-.BI "void \fBsetAddress\fR ( Q_UINT8 * ip6Addr )"
+.BI "void \fBsetAddress\fR ( TQ_UINT8 * ip6Addr )"
.br
.ti -1c
.BI "bool \fBsetAddress\fR ( const QString & address )"
@@ -47,13 +47,13 @@ QHostAddress \- IP address
.BI "bool isIp4Addr () const \fI(obsolete)\fR"
.br
.ti -1c
-.BI "Q_UINT32 ip4Addr () const \fI(obsolete)\fR"
+.BI "TQ_UINT32 ip4Addr () const \fI(obsolete)\fR"
.br
.ti -1c
.BI "bool \fBisIPv4Address\fR () const"
.br
.ti -1c
-.BI "Q_UINT32 \fBtoIPv4Address\fR () const"
+.BI "TQ_UINT32 \fBtoIPv4Address\fR () const"
.br
.ti -1c
.BI "bool \fBisIPv6Address\fR () const"
@@ -84,9 +84,9 @@ See also QSocket, QServerSocket, QSocketDevice, and Input/Output and Networking.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QHostAddress::QHostAddress ()"
Creates a host address object with the IP address 0.0.0.0.
-.SH "QHostAddress::QHostAddress ( Q_UINT32 ip4Addr )"
+.SH "QHostAddress::QHostAddress ( TQ_UINT32 ip4Addr )"
Creates a host address object for the IPv4 address \fIip4Addr\fR.
-.SH "QHostAddress::QHostAddress ( Q_UINT8 * ip6Addr )"
+.SH "QHostAddress::QHostAddress ( TQ_UINT8 * ip6Addr )"
Creates a host address object with the specified IPv6 address.
.PP
\fIip6Addr\fR must be a 16 byte array in network byte order (high-order byte first).
@@ -96,7 +96,7 @@ Creates a host address object with the IPv6 address, \fIip6Addr\fR.
Creates a copy of \fIaddress\fR.
.SH "QHostAddress::~QHostAddress ()\fC [virtual]\fR"
Destroys the host address object.
-.SH "Q_UINT32 QHostAddress::ip4Addr () const"
+.SH "TQ_UINT32 QHostAddress::ip4Addr () const"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Use toIPv4Address() instead.
@@ -114,9 +114,9 @@ Returns TRUE if this host address is null (INADDR_ANY or in6addr_any). The defau
Assigns another host address object \fIaddress\fR to this object and returns a reference to this object.
.SH "bool QHostAddress::operator== ( const QHostAddress & other ) const"
Returns TRUE if this host address is the same as \fIother\fR; otherwise returns FALSE.
-.SH "void QHostAddress::setAddress ( Q_UINT32 ip4Addr )"
+.SH "void QHostAddress::setAddress ( TQ_UINT32 ip4Addr )"
Set the IPv4 address specified by \fIip4Addr\fR.
-.SH "void QHostAddress::setAddress ( Q_UINT8 * ip6Addr )"
+.SH "void QHostAddress::setAddress ( TQ_UINT8 * ip6Addr )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Set the IPv6 address specified by \fIip6Addr\fR.
@@ -126,7 +126,7 @@ Set the IPv6 address specified by \fIip6Addr\fR.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Sets the IPv4 or IPv6 address specified by the string representation \fIaddress\fR (e.g. "127.0.0.1"). Returns TRUE and sets the address if the address was successfully parsed; otherwise returns FALSE and leaves the address unchanged.
-.SH "Q_UINT32 QHostAddress::toIPv4Address () const"
+.SH "TQ_UINT32 QHostAddress::toIPv4Address () const"
Returns the IPv4 address as a number.
.PP
For example, if the address is 127.0.0.1, the returned value is 2130706433 (i.e. 0x7f000001).