Skip to content
Snippets Groups Projects
Commit 8908c333 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Fixed compile warning about unused variable

parent f053ec8c
No related branches found
No related tags found
No related merge requests found
......@@ -367,7 +367,7 @@ QWidget *FontSettingsPage::createPage(QWidget *parent)
void FontSettingsPage::fontFamilySelected(const QString &family)
{
d_ptr->m_value.setFamily(d_ptr->ui.familyComboBox->currentText());
d_ptr->m_value.setFamily(family);
d_ptr->ui.schemeEdit->setBaseFont(d_ptr->m_value.font());
updatePointSizes();
}
......
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