FdoSecrets: fix prompt completed signal argument type

This commit is contained in:
Aetf
2020-01-24 12:49:16 -05:00
parent 44779bc862
commit 463bb0b03f
4 changed files with 40 additions and 13 deletions

View File

@@ -600,11 +600,11 @@ namespace FdoSecrets
return qobject_cast<Service*>(parent());
}
void Collection::doLock()
bool Collection::doLock()
{
Q_ASSERT(m_backend);
m_backend->lock();
return m_backend->lock();
}
void Collection::doUnlock()