mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Make C++11 mandatory.
This commit is contained in:
parent
0e85c98d02
commit
7fa0eddc5f
112 changed files with 332 additions and 411 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
GroupModel::GroupModel(Database* db, QObject* parent)
|
||||
: QAbstractItemModel(parent)
|
||||
, m_db(Q_NULLPTR)
|
||||
, m_db(nullptr)
|
||||
{
|
||||
changeDatabase(db);
|
||||
}
|
||||
|
@ -329,7 +329,7 @@ QStringList GroupModel::mimeTypes() const
|
|||
QMimeData* GroupModel::mimeData(const QModelIndexList& indexes) const
|
||||
{
|
||||
if (indexes.isEmpty()) {
|
||||
return Q_NULLPTR;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
QMimeData* data = new QMimeData();
|
||||
|
@ -354,7 +354,7 @@ QMimeData* GroupModel::mimeData(const QModelIndexList& indexes) const
|
|||
|
||||
if (seenGroups.isEmpty()) {
|
||||
delete data;
|
||||
return Q_NULLPTR;
|
||||
return nullptr;
|
||||
}
|
||||
else {
|
||||
data->setData(mimeTypes().first(), encoded);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue