mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:47:34 +00:00
PaintBrush: Fix compiler warnings.
This commit is contained in:
parent
46a06c23e3
commit
61b4da447d
2 changed files with 5 additions and 5 deletions
|
@ -74,7 +74,7 @@ void ColorDialog::build()
|
|||
return spinbox;
|
||||
};
|
||||
|
||||
auto* red_spin = make_spinbox(Red, m_color.red());
|
||||
auto* green_spin = make_spinbox(Green, m_color.green());
|
||||
auto* blue_spin = make_spinbox(Blue, m_color.blue());
|
||||
make_spinbox(Red, m_color.red());
|
||||
make_spinbox(Green, m_color.green());
|
||||
make_spinbox(Blue, m_color.blue());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue