diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-25 16:47:09 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-25 16:47:09 -0400 |
commit | a6addb5332eca0cecd3baca0c9660805396d235b (patch) | |
tree | e87373fc21a47668f2c8917401a092d2efe2498e /src/yuzu | |
parent | 2347e1b8c530fb1cf88e61c40b2369746d4636a8 (diff) |
configure_system: Amend function casing
Diffstat (limited to 'src/yuzu')
-rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 8 | ||||
-rw-r--r-- | src/yuzu/configuration/configure_system.h | 4 |
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) ui->setupUi(this); connect(ui->combo_birthmonth, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, - &ConfigureSystem::updateBirthdayComboBox); + &ConfigureSystem::UpdateBirthdayComboBox); connect(ui->button_regenerate_console_id, &QPushButton::clicked, this, - &ConfigureSystem::refreshConsoleID); + &ConfigureSystem::RefreshConsoleID); layout = new QVBoxLayout; tree_view = new QTreeView; @@ -180,7 +180,7 @@ void ConfigureSystem::applyConfiguration() { Settings::Apply(); } -void ConfigureSystem::updateBirthdayComboBox(int birthmonth_index) { +void ConfigureSystem::UpdateBirthdayComboBox(int birthmonth_index) { if (birthmonth_index < 0 || birthmonth_index >= 12) return; @@ -205,7 +205,7 @@ void ConfigureSystem::updateBirthdayComboBox(int birthmonth_index) { ui->combo_birthday->setCurrentIndex(birthday_index); } -void ConfigureSystem::refreshConsoleID() { +void ConfigureSystem::RefreshConsoleID() { QMessageBox::StandardButton reply; QString warning_text = tr("This will replace your current virtual Switch with a new one. " "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: void ReadSystemSettings(); std::string GetAccountUsername(Service::Account::UUID uuid) const; - void updateBirthdayComboBox(int birthmonth_index); - void refreshConsoleID(); + void UpdateBirthdayComboBox(int birthmonth_index); + void RefreshConsoleID(); void PopulateUserList(); void UpdateCurrentUser(); |