From 96c67c9b3924ab034d3d34aa03d3ea7cf0746587 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 11:54:03 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro --- libkgpgfile/kgpgfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libkgpgfile/kgpgfile.cpp') diff --git a/libkgpgfile/kgpgfile.cpp b/libkgpgfile/kgpgfile.cpp index c0f0549..63b90c8 100644 --- a/libkgpgfile/kgpgfile.cpp +++ b/libkgpgfile/kgpgfile.cpp @@ -565,7 +565,7 @@ void KGPGFile::publicKeyList(TQStringList& list, const TQString& pattern) TQStringList fields = TQStringList::split(":", (*it), true); TQString val; if(fields[0] == "pub") { - TQDate expiration = TQDate::fromString(fields[6], Qt::ISODate); + TQDate expiration = TQDate::fromString(fields[6], TQt::ISODate); if(expiration > TQDate::currentDate()) { currentKey = fields[4]; val = TQString("%1:%2").arg(currentKey).arg(fields[9]); -- cgit v1.2.1