mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-21 12:38:12 -04:00
Use C++11 keyword directly in new methods.
This commit is contained in:
parent
71d4cb781d
commit
bfae81ec70
4 changed files with 6 additions and 6 deletions
|
@ -25,13 +25,13 @@
|
|||
#include "format/KeePass2XmlReader.h"
|
||||
|
||||
KeePass2Repair::KeePass2Repair()
|
||||
: m_db(Q_NULLPTR)
|
||||
: m_db(nullptr)
|
||||
{
|
||||
}
|
||||
|
||||
KeePass2Repair::RepairResult KeePass2Repair::repairDatabase(QIODevice* device, const CompositeKey& key)
|
||||
{
|
||||
m_db = Q_NULLPTR;
|
||||
m_db = nullptr;
|
||||
m_errorStr.clear();
|
||||
|
||||
KeePass2Reader reader;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue