Gui: modernize C++: use override

This commit is contained in:
wmayer
2023-08-03 23:12:19 +02:00
committed by wwmayer
parent e115c52418
commit e72da4d4c4
35 changed files with 186 additions and 168 deletions

View File

@@ -333,11 +333,11 @@ public:
tmpName = QString::fromLatin1("%1.tmp%2").arg(fileName).arg(rand());
writer.putNextEntry(tmpName.toUtf8().constData());
}
virtual ~RecoveryRunnable()
~RecoveryRunnable() override
{
delete prop;
}
virtual void run()
void run() override
{
prop->SaveDocFile(writer);
writer.close();