Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
8908c333
Commit
8908c333
authored
Jul 21, 2009
by
Thorbjørn Lindeijer
Browse files
Fixed compile warning about unused variable
parent
f053ec8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/texteditor/fontsettingspage.cpp
View file @
8908c333
...
...
@@ -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
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment