diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 23:08:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 20:36:07 +0900 |
commit | 47887118cbc24b8da767f1b701bdfa59820f4eaa (patch) | |
tree | 457fcd0c23e94d329e3c22d97b4845df11e79ab9 | |
parent | 1eb1114962ebcca0bd4e6aa33c3b1c7686d4ec4e (diff) | |
download | kcmldapmanager-47887118cbc24b8da767f1b701bdfa59820f4eaa.tar.gz kcmldapmanager-47887118cbc24b8da767f1b701bdfa59820f4eaa.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 3c481ee750141fe8e7de1689314eabbf605a4290)
-rw-r--r-- | src/userconfigdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userconfigdlg.cpp b/src/userconfigdlg.cpp index f42325c..3a83bb3 100644 --- a/src/userconfigdlg.cpp +++ b/src/userconfigdlg.cpp @@ -540,11 +540,11 @@ void UserConfigDialog::updatePKICertificateList() { if (cert) { TQString status = i18n("Invalid"); if (certificateData.first == PKICertificateStatus::Valid) { - if (TQDateTime::currentDateTime(Qt::UTC) > cert->getQDTNotAfter()) { + if (TQDateTime::currentDateTime(TQt::UTC) > cert->getQDTNotAfter()) { status = i18n("Expired"); } else { - if (TQDateTime::currentDateTime(Qt::UTC) < cert->getQDTNotBefore()) { + if (TQDateTime::currentDateTime(TQt::UTC) < cert->getQDTNotBefore()) { status = i18n("Future Valid"); } else { |