mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-13 16:30:29 -05:00
FdoSecrets: fix typos
This commit is contained in:
parent
000e1823ac
commit
f5caf3968f
@ -25,7 +25,6 @@
|
||||
#include "fdosecrets/objects/Session.h"
|
||||
|
||||
#include "core/Config.h"
|
||||
#include "core/Database.h"
|
||||
#include "core/Tools.h"
|
||||
#include "gui/DatabaseTabWidget.h"
|
||||
#include "gui/DatabaseWidget.h"
|
||||
@ -330,12 +329,12 @@ namespace FdoSecrets
|
||||
itemPath = attributes.value(ItemAttributes::PathKey);
|
||||
|
||||
// check existing item using attributes
|
||||
auto existings = searchItems(attributes);
|
||||
if (existings.isError()) {
|
||||
return existings;
|
||||
auto existing = searchItems(attributes);
|
||||
if (existing.isError()) {
|
||||
return existing;
|
||||
}
|
||||
if (!existings.value().isEmpty() && replace) {
|
||||
item = existings.value().front();
|
||||
if (!existing.value().isEmpty() && replace) {
|
||||
item = existing.value().front();
|
||||
newlyCreated = false;
|
||||
}
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ namespace FdoSecrets
|
||||
: DBusObject(nullptr)
|
||||
, m_plugin(plugin)
|
||||
, m_databases(std::move(dbTabs))
|
||||
, m_insdieEnsureDefaultAlias(false)
|
||||
, m_insideEnsureDefaultAlias(false)
|
||||
, m_serviceWatcher(nullptr)
|
||||
{
|
||||
connect(
|
||||
@ -176,11 +176,11 @@ namespace FdoSecrets
|
||||
|
||||
void Service::ensureDefaultAlias()
|
||||
{
|
||||
if (m_insdieEnsureDefaultAlias) {
|
||||
if (m_insideEnsureDefaultAlias) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_insdieEnsureDefaultAlias = true;
|
||||
m_insideEnsureDefaultAlias = true;
|
||||
|
||||
auto coll = findCollection(m_databases->currentDatabaseWidget());
|
||||
if (coll) {
|
||||
@ -188,7 +188,7 @@ namespace FdoSecrets
|
||||
coll->addAlias(DEFAULT_ALIAS).okOrDie();
|
||||
}
|
||||
|
||||
m_insdieEnsureDefaultAlias = false;
|
||||
m_insideEnsureDefaultAlias = false;
|
||||
}
|
||||
|
||||
void Service::dbusServiceUnregistered(const QString& service)
|
||||
|
@ -159,7 +159,7 @@ namespace FdoSecrets
|
||||
QList<Session*> m_sessions;
|
||||
QHash<QString, Session*> m_peerToSession;
|
||||
|
||||
bool m_insdieEnsureDefaultAlias;
|
||||
bool m_insideEnsureDefaultAlias;
|
||||
|
||||
std::unique_ptr<QDBusServiceWatcher> m_serviceWatcher;
|
||||
};
|
||||
|
@ -24,7 +24,7 @@
|
||||
namespace FdoSecrets
|
||||
{
|
||||
|
||||
QHash<QString, QVariant> Session::negoniationState;
|
||||
QHash<QString, QVariant> Session::negotiationState;
|
||||
|
||||
Session* Session::Create(std::unique_ptr<CipherPair>&& cipher, const QString& peer, Service* parent)
|
||||
{
|
||||
@ -57,7 +57,7 @@ namespace FdoSecrets
|
||||
|
||||
void Session::CleanupNegotiation(const QString& peer)
|
||||
{
|
||||
negoniationState.remove(peer);
|
||||
negotiationState.remove(peer);
|
||||
}
|
||||
|
||||
DBusReturn<void> Session::close()
|
||||
|
@ -42,7 +42,7 @@ namespace FdoSecrets
|
||||
public:
|
||||
static std::unique_ptr<CipherPair> CreateCiphers(const QString& peer,
|
||||
const QString& algorithm,
|
||||
const QVariant& intpu,
|
||||
const QVariant& input,
|
||||
QVariant& output,
|
||||
bool& incomplete);
|
||||
static void CleanupNegotiation(const QString& peer);
|
||||
@ -99,7 +99,7 @@ namespace FdoSecrets
|
||||
QString m_peer;
|
||||
QUuid m_id;
|
||||
|
||||
static QHash<QString, QVariant> negoniationState;
|
||||
static QHash<QString, QVariant> negotiationState;
|
||||
};
|
||||
|
||||
} // namespace FdoSecrets
|
||||
|
@ -267,7 +267,7 @@ void TestGuiFdoSecrets::init()
|
||||
m_dbWidget = m_tabWidget->currentDatabaseWidget();
|
||||
m_db = m_dbWidget->database();
|
||||
|
||||
// by default expsoe the root group
|
||||
// by default expose the root group
|
||||
FdoSecrets::settings()->setExposedGroup(m_db, m_db->rootGroup()->uuid());
|
||||
QVERIFY(m_dbWidget->save());
|
||||
}
|
||||
@ -1047,7 +1047,7 @@ void TestGuiFdoSecrets::testExposeSubgroup()
|
||||
QCOMPARE(exposedEntries, subgroup->entries());
|
||||
}
|
||||
|
||||
void TestGuiFdoSecrets::testModifiyingExposedGroup()
|
||||
void TestGuiFdoSecrets::testModifyingExposedGroup()
|
||||
{
|
||||
// test when exposed group is removed the collection is not exposed anymore
|
||||
auto subgroup = m_db->rootGroup()->findGroupByPath("/Homebanking");
|
||||
|
@ -82,7 +82,7 @@ private slots:
|
||||
void testDefaultAliasAlwaysPresent();
|
||||
|
||||
void testExposeSubgroup();
|
||||
void testModifiyingExposedGroup();
|
||||
void testModifyingExposedGroup();
|
||||
|
||||
protected slots:
|
||||
void createDatabaseCallback();
|
||||
|
Loading…
Reference in New Issue
Block a user