1
Fork 0
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:
Andreas Kling 2019-06-22 16:26:04 +02:00
parent 46a06c23e3
commit 61b4da447d
2 changed files with 5 additions and 5 deletions

View file

@ -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());
}