mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Fixed building GnomeKeyringPasswords plugin.
This commit is contained in:
parent
a172327992
commit
ace07520d6
|
@ -42,9 +42,10 @@ PluginSpec GnomeKeyringPlugin::pluginSpec()
|
|||
return spec;
|
||||
}
|
||||
|
||||
void GnomeKeyringPlugin::init(const QString &sPath)
|
||||
void GnomeKeyringPlugin::init(InitState state, const QString &settingsPath)
|
||||
{
|
||||
Q_UNUSED(sPath);
|
||||
Q_UNUSED(state);
|
||||
Q_UNUSED(settingsPath);
|
||||
|
||||
m_backend = new GnomeKeyringPasswordBackend;
|
||||
QZ_REGISTER_PASSWORD_BACKEND("GnomeKeyring", m_backend);
|
||||
|
|
|
@ -35,7 +35,7 @@ public:
|
|||
explicit GnomeKeyringPlugin();
|
||||
PluginSpec pluginSpec();
|
||||
|
||||
void init(const QString &sPath);
|
||||
void init(InitState state, const QString &settingsPath);
|
||||
void unload();
|
||||
bool testPlugin();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user