mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
Refactor
Move default value to preference class Rename variable Reorder headers Remove extra parentheses
This commit is contained in:
@@ -31,8 +31,9 @@
|
||||
*/
|
||||
|
||||
#include <QCryptographicHash>
|
||||
#include <QPair>
|
||||
#include <QDir>
|
||||
#include <QLocale>
|
||||
#include <QPair>
|
||||
#include <QSettings>
|
||||
|
||||
#ifndef DISABLE_GUI
|
||||
@@ -92,7 +93,7 @@ void Preferences::setValue(const QString &key, const QVariant &value)
|
||||
// General options
|
||||
QString Preferences::getLocale() const
|
||||
{
|
||||
return value("Preferences/General/Locale").toString();
|
||||
return value("Preferences/General/Locale", QLocale::system().name()).toString();
|
||||
}
|
||||
|
||||
void Preferences::setLocale(const QString &locale)
|
||||
|
||||
Reference in New Issue
Block a user