From b5ec4940a4a643d5abbe88b0c729fab7f7f2e9ca Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Tue, 30 Sep 2025 11:46:33 +0200 Subject: [PATCH] qt: remove unused BUTTON_SET_ACT --- modules/gui/qt/qt.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/gui/qt/qt.hpp b/modules/gui/qt/qt.hpp index d15d76374a..411f64c541 100644 --- a/modules/gui/qt/qt.hpp +++ b/modules/gui/qt/qt.hpp @@ -129,10 +129,6 @@ struct vlc_playlist_locker { button->setText( text ); \ button->setToolTip( tooltip ); -#define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \ - BUTTON_SET( button, text, tooltip ); \ - BUTTONACT( button, thisslot ); - #define BUTTON_SET_IMG( button, text, image, tooltip ) \ BUTTON_SET( button, text, tooltip ); \ button->setIcon( QIcon( ":/"#image ".svg") );