Browse Source

yuzu/configuration/configure_general: Specify string conversions explicitly

Allows the general configuration code to successfully compile with
implicit string conversions disabled.
nce_cpp
Lioncash 7 years ago
parent
commit
5c55220ce5
  1. 3
      src/yuzu/configuration/configure_general.cpp

3
src/yuzu/configuration/configure_general.cpp

@ -14,7 +14,8 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent)
ui->setupUi(this);
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();

Loading…
Cancel
Save