mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
KWalletPasswordBackend: Add overrides
This commit is contained in:
parent
e44ba37063
commit
a3e320fb47
|
@ -33,17 +33,17 @@ public:
|
|||
explicit KWalletPasswordBackend();
|
||||
~KWalletPasswordBackend();
|
||||
|
||||
QString name() const;
|
||||
QString name() const override;
|
||||
|
||||
QVector<PasswordEntry> getEntries(const QUrl &url);
|
||||
QVector<PasswordEntry> getAllEntries();
|
||||
QVector<PasswordEntry> getEntries(const QUrl &url) override;
|
||||
QVector<PasswordEntry> getAllEntries() override;
|
||||
|
||||
void addEntry(const PasswordEntry &entry);
|
||||
bool updateEntry(const PasswordEntry &entry);
|
||||
void updateLastUsed(PasswordEntry &entry);
|
||||
void addEntry(const PasswordEntry &entry) override;
|
||||
bool updateEntry(const PasswordEntry &entry) override;
|
||||
void updateLastUsed(PasswordEntry &entry) override;
|
||||
|
||||
void removeEntry(const PasswordEntry &entry);
|
||||
void removeAll();
|
||||
void removeEntry(const PasswordEntry &entry) override;
|
||||
void removeAll() override;
|
||||
|
||||
private:
|
||||
void initialize();
|
||||
|
|
Loading…
Reference in New Issue
Block a user