mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Fix capitalization of Settings::loadpersonal()
My bad, thanks to @antis81 for noticing
This commit is contained in:
parent
7211b3d5f8
commit
6cc36a969a
|
@ -275,7 +275,7 @@ void Nexus::setProfile(Profile* profile)
|
|||
{
|
||||
getInstance().profile = profile;
|
||||
if (profile)
|
||||
Settings::getInstance().loadpersonal(profile);
|
||||
Settings::getInstance().loadPersonal(profile);
|
||||
}
|
||||
|
||||
AndroidGUI* Nexus::getAndroidGUI()
|
||||
|
|
|
@ -265,7 +265,7 @@ void Settings::loadGlobal()
|
|||
loaded = true;
|
||||
}
|
||||
|
||||
void Settings::loadpersonal()
|
||||
void Settings::loadPersonal()
|
||||
{
|
||||
Profile* profile = Nexus::getProfile();
|
||||
if (!profile)
|
||||
|
@ -273,10 +273,10 @@ void Settings::loadpersonal()
|
|||
qCritical() << "No active profile, couldn't load personal settings";
|
||||
return;
|
||||
}
|
||||
loadpersonal(profile);
|
||||
loadPersonal(profile);
|
||||
}
|
||||
|
||||
void Settings::loadpersonal(Profile* profile)
|
||||
void Settings::loadPersonal(Profile* profile)
|
||||
{
|
||||
QMutexLocker locker{&bigLock};
|
||||
|
||||
|
|
|
@ -49,8 +49,8 @@ public:
|
|||
void savePersonal(Profile *profile); ///< Asynchronous
|
||||
|
||||
void loadGlobal();
|
||||
void loadpersonal();
|
||||
void loadpersonal(Profile *profile);
|
||||
void loadPersonal();
|
||||
void loadPersonal(Profile *profile);
|
||||
|
||||
public slots:
|
||||
void saveGlobal(); ///< Asynchronous
|
||||
|
|
Loading…
Reference in New Issue
Block a user