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