mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-16 18:59:57 -04:00
Indentation and variable naming fixes.
This commit is contained in:
parent
6a2034fa24
commit
26de957a98
3 changed files with 7 additions and 7 deletions
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include <gcrypt.h>
|
#include <gcrypt.h>
|
||||||
|
|
||||||
bool Crypto::m_initiated(false);
|
bool Crypto::m_initalized(false);
|
||||||
|
|
||||||
int gcry_qt_mutex_init(void** p_sys)
|
int gcry_qt_mutex_init(void** p_sys)
|
||||||
{
|
{
|
||||||
|
@ -63,7 +63,7 @@ Crypto::Crypto()
|
||||||
|
|
||||||
void Crypto::init()
|
void Crypto::init()
|
||||||
{
|
{
|
||||||
if (m_initiated) {
|
if (m_initalized) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ void Crypto::init()
|
||||||
gcry_check_version(0);
|
gcry_check_version(0);
|
||||||
gcry_control(GCRYCTL_INITIALIZATION_FINISHED, 0);
|
gcry_control(GCRYCTL_INITIALIZATION_FINISHED, 0);
|
||||||
|
|
||||||
m_initiated = true;
|
m_initalized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Crypto::selfTest()
|
bool Crypto::selfTest()
|
||||||
|
|
|
@ -26,7 +26,7 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Crypto();
|
Crypto();
|
||||||
static bool m_initiated;
|
static bool m_initalized;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KEEPASSX_CRYPTO_H
|
#endif // KEEPASSX_CRYPTO_H
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue