mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Issue #22: Fix compilation warnings
This commit is contained in:
@ -111,12 +111,12 @@ int PDFToolCertStore::execute(const PDFToolOptions& options)
|
||||
|
||||
if (notValidBefore.isValid())
|
||||
{
|
||||
notValidBeforeText = notValidBefore.toString(options.outputDateFormat);
|
||||
notValidBeforeText = convertDateTimeToString(notValidBefore, options.outputDateFormat);
|
||||
}
|
||||
|
||||
if (notValidAfter.isValid())
|
||||
{
|
||||
notValidAfterText = notValidAfter.toString(options.outputDateFormat);
|
||||
notValidAfterText = convertDateTimeToString(notValidAfter, options.outputDateFormat);
|
||||
}
|
||||
|
||||
formatter.beginTableRow("certificate", ref);
|
||||
|
Reference in New Issue
Block a user