Fixed building GnomeKeyringPasswords plugin.

remotes/origin/falkon
nowrep 13 years ago
parent a172327992
commit ace07520d6
  1. 5
      src/plugins/GnomeKeyringPasswords/gnomekeyringplugin.cpp
  2. 2
      src/plugins/GnomeKeyringPasswords/gnomekeyringplugin.h

@ -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…
Cancel
Save