1
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:
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; 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);

View File

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