summaryrefslogtreecommitdiffstats
path: root/tdecore/ktimezones.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-08 12:21:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-08 20:01:20 +0900
commit18c573e806f0dcf0a7fcde805aaa528ef11ebc88 (patch)
tree625f81c4a08d4d9b4a2b041b261f919afd59828a /tdecore/ktimezones.cpp
parent9d6823ebc6f4f68e1cd83f42b0548716048cfcfe (diff)
downloadtdelibs-18c573e806f0dcf0a7fcde805aaa528ef11ebc88.tar.gz
tdelibs-18c573e806f0dcf0a7fcde805aaa528ef11ebc88.zip
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c0b74ba868682f39c41a9f70ae11297425b711e1)
Diffstat (limited to 'tdecore/ktimezones.cpp')
-rw-r--r--tdecore/ktimezones.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/ktimezones.cpp b/tdecore/ktimezones.cpp
index 3436cdabb..2dd248cfe 100644
--- a/tdecore/ktimezones.cpp
+++ b/tdecore/ktimezones.cpp
@@ -507,7 +507,7 @@ const KTimezone *KTimezones::local()
// Compute the MD5 sum of /etc/localtime.
KMD5 context("");
context.reset();
- context.update(TQT_TQIODEVICE_OBJECT(f));
+ context.update(f);
TQIODevice::Offset referenceSize = f.size();
TQString referenceMd5Sum = context.hexDigest();
f.close();
@@ -526,7 +526,7 @@ const KTimezone *KTimezones::local()
{
// Only do the heavy lifting for file sizes which match.
context.reset();
- context.update(TQT_TQIODEVICE_OBJECT(f));
+ context.update(f);
candidateMd5Sum = context.hexDigest();
}
f.close();