Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/4/head
Michele Calgaro 9 months ago
parent 5bd696a78c
commit 3c481ee750
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -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 {

Loading…
Cancel
Save