summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/yuzu/configuration/configure_system.cpp8
-rw-r--r--src/yuzu/configuration/configure_system.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp
index 0bc307e99..d4ed7d5d3 100644
--- a/src/yuzu/configuration/configure_system.cpp
+++ b/src/yuzu/configuration/configure_system.cpp
@@ -58,9 +58,9 @@ ConfigureSystem::ConfigureSystem(QWidget* parent)
58 ui->setupUi(this); 58 ui->setupUi(this);
59 connect(ui->combo_birthmonth, 59 connect(ui->combo_birthmonth,
60 static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, 60 static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
61 &ConfigureSystem::updateBirthdayComboBox); 61 &ConfigureSystem::UpdateBirthdayComboBox);
62 connect(ui->button_regenerate_console_id, &QPushButton::clicked, this, 62 connect(ui->button_regenerate_console_id, &QPushButton::clicked, this,
63 &ConfigureSystem::refreshConsoleID); 63 &ConfigureSystem::RefreshConsoleID);
64 64
65 layout = new QVBoxLayout; 65 layout = new QVBoxLayout;
66 tree_view = new QTreeView; 66 tree_view = new QTreeView;
@@ -180,7 +180,7 @@ void ConfigureSystem::applyConfiguration() {
180 Settings::Apply(); 180 Settings::Apply();
181} 181}
182 182
183void ConfigureSystem::updateBirthdayComboBox(int birthmonth_index) { 183void ConfigureSystem::UpdateBirthdayComboBox(int birthmonth_index) {
184 if (birthmonth_index < 0 || birthmonth_index >= 12) 184 if (birthmonth_index < 0 || birthmonth_index >= 12)
185 return; 185 return;
186 186
@@ -205,7 +205,7 @@ void ConfigureSystem::updateBirthdayComboBox(int birthmonth_index) {
205 ui->combo_birthday->setCurrentIndex(birthday_index); 205 ui->combo_birthday->setCurrentIndex(birthday_index);
206} 206}
207 207
208void ConfigureSystem::refreshConsoleID() { 208void ConfigureSystem::RefreshConsoleID() {
209 QMessageBox::StandardButton reply; 209 QMessageBox::StandardButton reply;
210 QString warning_text = tr("This will replace your current virtual Switch with a new one. " 210 QString warning_text = tr("This will replace your current virtual Switch with a new one. "
211 "Your current virtual Switch will not be recoverable. " 211 "Your current virtual Switch will not be recoverable. "
diff --git a/src/yuzu/configuration/configure_system.h b/src/yuzu/configuration/configure_system.h
index ea724e317..86269ccd5 100644
--- a/src/yuzu/configuration/configure_system.h
+++ b/src/yuzu/configuration/configure_system.h
@@ -38,8 +38,8 @@ private:
38 void ReadSystemSettings(); 38 void ReadSystemSettings();
39 std::string GetAccountUsername(Service::Account::UUID uuid) const; 39 std::string GetAccountUsername(Service::Account::UUID uuid) const;
40 40
41 void updateBirthdayComboBox(int birthmonth_index); 41 void UpdateBirthdayComboBox(int birthmonth_index);
42 void refreshConsoleID(); 42 void RefreshConsoleID();
43 43
44 void PopulateUserList(); 44 void PopulateUserList();
45 void UpdateCurrentUser(); 45 void UpdateCurrentUser();