mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-09 08:09:37 -04:00
Q_NULLPTR -> nullptr
This commit is contained in:
parent
ecfbad0443
commit
055ba4f14e
2 changed files with 2 additions and 2 deletions
|
@ -825,7 +825,7 @@ void DatabaseWidget::unlockDatabase(bool accepted)
|
|||
return;
|
||||
}
|
||||
|
||||
Database* db = Q_NULLPTR;
|
||||
Database* db = nullptr;
|
||||
if (sender() == m_unlockDatabaseDialog) {
|
||||
db = m_unlockDatabaseDialog->database();
|
||||
} else if (sender() == m_unlockDatabaseWidget) {
|
||||
|
|
|
@ -31,7 +31,7 @@ class UnlockDatabaseDialog : public QDialog
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit UnlockDatabaseDialog(QWidget* parent = Q_NULLPTR);
|
||||
explicit UnlockDatabaseDialog(QWidget* parent = nullptr);
|
||||
void setDBFilename(const QString& filename);
|
||||
void clearForms();
|
||||
Database* database();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue