Skip to content
Snippets Groups Projects
Commit 7e650088 authored by Lioncash's avatar Lioncash
Browse files

yuzu/configuration/configure_general: Specify string conversions explicitly

Allows the general configuration code to successfully compile with
implicit string conversions disabled.
parent 05235cca
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,8 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent) ...@@ -14,7 +14,8 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent)
ui->setupUi(this); ui->setupUi(this);
for (const auto& theme : UISettings::themes) { for (const auto& theme : UISettings::themes) {
ui->theme_combobox->addItem(theme.first, theme.second); ui->theme_combobox->addItem(QString::fromUtf8(theme.first),
QString::fromUtf8(theme.second));
} }
this->setConfiguration(); this->setConfiguration();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment