1
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:
nowrep 2013-05-24 14:47:36 +02:00
parent a172327992
commit ace07520d6
2 changed files with 4 additions and 3 deletions

View File

@ -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);

View File

@ -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();