mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-09 23:12:23 -04:00
Add missing 'override' for overridden functions
This commit is contained in:
parent
0f604aa8c7
commit
e06eae423e
14 changed files with 15 additions and 15 deletions
|
@ -25,7 +25,7 @@ class Add : public Command
|
|||
public:
|
||||
Add();
|
||||
~Add();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_ADD_H
|
||||
|
|
|
@ -25,7 +25,7 @@ class Clip : public Command
|
|||
public:
|
||||
Clip();
|
||||
~Clip();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
int clipEntry(Database* database, const QString& entryPath, const QString& timeout);
|
||||
};
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ class Diceware : public Command
|
|||
public:
|
||||
Diceware();
|
||||
~Diceware();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_DICEWARE_H
|
||||
|
|
|
@ -25,7 +25,7 @@ class Edit : public Command
|
|||
public:
|
||||
Edit();
|
||||
~Edit();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_EDIT_H
|
||||
|
|
|
@ -25,7 +25,7 @@ class Estimate : public Command
|
|||
public:
|
||||
Estimate();
|
||||
~Estimate();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_ESTIMATE_H
|
||||
|
|
|
@ -25,7 +25,7 @@ class Extract : public Command
|
|||
public:
|
||||
Extract();
|
||||
~Extract();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_EXTRACT_H
|
||||
|
|
|
@ -25,7 +25,7 @@ class Generate : public Command
|
|||
public:
|
||||
Generate();
|
||||
~Generate();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_GENERATE_H
|
||||
|
|
|
@ -25,7 +25,7 @@ class List : public Command
|
|||
public:
|
||||
List();
|
||||
~List();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
int listGroup(Database* database, bool recursive, const QString& groupPath = {});
|
||||
};
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ class Locate : public Command
|
|||
public:
|
||||
Locate();
|
||||
~Locate();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
int locateEntry(Database* database, const QString& searchTerm);
|
||||
};
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ class Merge : public Command
|
|||
public:
|
||||
Merge();
|
||||
~Merge();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
};
|
||||
|
||||
#endif // KEEPASSXC_MERGE_H
|
||||
|
|
|
@ -27,7 +27,7 @@ class Remove : public Command
|
|||
public:
|
||||
Remove();
|
||||
~Remove();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
int removeEntry(Database* database, const QString& databasePath, const QString& entryPath);
|
||||
};
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ class Show : public Command
|
|||
public:
|
||||
Show();
|
||||
~Show();
|
||||
int execute(const QStringList& arguments);
|
||||
int execute(const QStringList& arguments) override;
|
||||
int showEntry(Database* database, QStringList attributes, const QString& entryPath);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue