summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/userconfigdlg.cpp4
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 {