Execute clang tidy. (#477)

This commit is contained in:
Arthur Sonzogni
2022-09-05 20:56:41 +02:00
committed by GitHub
parent c8ec151154
commit fab74f745d
3 changed files with 42 additions and 15 deletions

View File

@@ -181,11 +181,13 @@ ButtonOption ButtonOption::Animated(Color color) {
/// @brief Create a ButtonOption, using animated colors.
// static
ButtonOption ButtonOption::Animated(Color background, Color foreground) {
// NOLINTBEGIN
return ButtonOption::Animated(
/*bakground=*/background,
/*foreground=*/foreground,
/*background_active=*/foreground,
/*foreground_active=*/background);
// NOLINTEND
}
/// @brief Create a ButtonOption, using animated colors.