mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Make C++11 mandatory.
This commit is contained in:
parent
0e85c98d02
commit
7fa0eddc5f
112 changed files with 332 additions and 411 deletions
|
@ -20,8 +20,6 @@
|
|||
|
||||
#include <QTreeView>
|
||||
|
||||
#include "core/Global.h"
|
||||
|
||||
class Database;
|
||||
class Group;
|
||||
class GroupModel;
|
||||
|
@ -31,9 +29,9 @@ class GroupView : public QTreeView
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit GroupView(Database* db, QWidget* parent = Q_NULLPTR);
|
||||
explicit GroupView(Database* db, QWidget* parent = nullptr);
|
||||
void changeDatabase(Database* newDb);
|
||||
void setModel(QAbstractItemModel* model) Q_DECL_OVERRIDE;
|
||||
void setModel(QAbstractItemModel* model) override;
|
||||
Group* currentGroup();
|
||||
void setCurrentGroup(Group* group);
|
||||
void expandGroup(Group* group, bool expand = true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue