summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-06 12:46:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-06 12:46:00 +0900
commit8e4c7f2adcb2283883c9f0eb7647c5fdab0e7c60 (patch)
treebc03d99a8e2d9679c57ec1c66dad396d7dc7d019
parentedb0207188f7ecad858af7002136baf2871cf1a0 (diff)
downloadtdeadmin-8e4c7f2a.tar.gz
tdeadmin-8e4c7f2a.zip
Replace various Q_* and QT_* defines with TQ_* and TQT_*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--knetworkconf/knetworkconf/knetworkconfigparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/knetworkconf/knetworkconf/knetworkconfigparser.cpp b/knetworkconf/knetworkconf/knetworkconfigparser.cpp
index 73bab37..cab83c6 100644
--- a/knetworkconf/knetworkconf/knetworkconfigparser.cpp
+++ b/knetworkconf/knetworkconf/knetworkconfigparser.cpp
@@ -221,7 +221,7 @@ KNetworkConfigParser::hexIPv4ToDecIPv4(const TQString &hex)
TQString temp = "";
TQString temp2 = "";
-#if Q_BYTE_ORDER == TQ_LITTLE_ENDIAN
+#if TQ_BYTE_ORDER == TQ_LITTLE_ENDIAN
temp = hex.mid(6,2);
temp2 = temp2.setNum(temp.toInt(&ok,16));
dec.append(temp2);