From 44308a8956266e80d50e45d4d3d7f5aed376b01b Mon Sep 17 00:00:00 2001 From: emeric Date: Mon, 3 Nov 2025 17:55:06 +0100 Subject: [PATCH] Silent warning --- src/lms/ui/LmsTheme.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lms/ui/LmsTheme.hpp b/src/lms/ui/LmsTheme.hpp index f4fe3ad3..20be368b 100644 --- a/src/lms/ui/LmsTheme.hpp +++ b/src/lms/ui/LmsTheme.hpp @@ -44,8 +44,8 @@ namespace lms::ui bool canBorderBoxElement(const Wt::DomElement&) const override { return true; } #if WT_VERSION >= 0x040C0100 // >= 4.12.1 - void applyFunctionalStyling(Wt::WWidget* widget, Wt::WWidget* child, int widgetRole) const override {} - void applyOptionalStyling(Wt::WWidget* widget, Wt::WWidget* child, int widgetRole) const override {} + void applyFunctionalStyling(Wt::WWidget*, Wt::WWidget*, int) const override {} + void applyOptionalStyling(Wt::WWidget*, Wt::WWidget*, int) const override {} #endif // WT_VERSION }; } // namespace lms::ui