diff options
author | Saturneric <[email protected]> | 2021-06-19 10:28:30 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-19 10:28:30 +0000 |
commit | 7377178bc7214cf2e4e93ffa05e3ad29dda79b89 (patch) | |
tree | 8517330e926667004bc8d4854da78ff3caec7a37 /src/ui/VerifyDetailsDialog.cpp | |
parent | Add dependent files under Windows. (diff) | |
download | GpgFrontend-7377178bc7214cf2e4e93ffa05e3ad29dda79b89.tar.gz GpgFrontend-7377178bc7214cf2e4e93ffa05e3ad29dda79b89.zip |
Improve project documents
Continue to write ReadME
Eliminate compile-time warnings
Fix some problems
Diffstat (limited to 'src/ui/VerifyDetailsDialog.cpp')
-rw-r--r-- | src/ui/VerifyDetailsDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/VerifyDetailsDialog.cpp b/src/ui/VerifyDetailsDialog.cpp index 9c6ad014..e1403e14 100644 --- a/src/ui/VerifyDetailsDialog.cpp +++ b/src/ui/VerifyDetailsDialog.cpp @@ -67,10 +67,10 @@ void VerifyDetailsDialog::slotRefresh() { mVboxLayout->addWidget(new QLabel(tr("Error Validating signature"))); } else if (mInputSignature != nullptr) { mVboxLayout->addWidget(new QLabel( - tr("File was signed on %1 <br/> It Contains:<br/>").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); + tr("File was signed on %1 <br/> It Contains:<br/>").arg(QLocale::system().toString(timestamp)))); } else { mVboxLayout->addWidget(new QLabel(tr("Signed on %1 <br/> It Contains:<br/>").arg( - timestamp.toString(Qt::SystemLocaleLongDate)))); + QLocale::system().toString(timestamp)))); } // Add informationbox for every single key while (sign) { |