From f8ba2f6615d5dd0bec2ec266438274bba18aecb9 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Sun, 22 Jun 2025 17:06:51 -0500 Subject: [PATCH] Gui: Mark widget as [[maybe_unused]] --- src/Gui/CommandView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 91ee820349..c657289ee7 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -2686,7 +2686,7 @@ public: currentSelectionHandler = nullptr; } - static QCursor makeCursor(QWidget* widget, const QSize& size, const char* svgFile, int hotX, int hotY) + static QCursor makeCursor([[maybe_unused]] QWidget* widget, const QSize& size, const char* svgFile, int hotX, int hotY) { qreal hotXF = hotX; qreal hotYF = hotY;