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