Commit bb354867 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: ConfigControl: fix unused warning

parent 37c38958
......@@ -93,7 +93,7 @@ public:
protected:
ConfigControl( vlc_object_t *_p_this, module_config_t *_p_conf,
QWidget *p ) : p_this( _p_this ), p_item( _p_conf )
{ widget = NULL; }
{ Q_UNUSED( p ); widget = NULL; }
ConfigControl( vlc_object_t *_p_this, module_config_t *_p_conf ) :
p_this (_p_this ), p_item( _p_conf )
{ widget = NULL; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment