Commit f4709e52 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: fix DEBUG_LAYOUT warning

parent 6f28b6cf
...@@ -624,7 +624,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, ...@@ -624,7 +624,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
{ {
/* advanced Controls handling */ /* advanced Controls handling */
b_advancedVisible = b_advControls; b_advancedVisible = b_advControls;
#if DEBUG_LAYOUT #ifdef DEBUG_LAYOUT
setStyleSheet( "background: red "); setStyleSheet( "background: red ");
#endif #endif
...@@ -677,7 +677,7 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i, QWidget *_parent ) : ...@@ -677,7 +677,7 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i, QWidget *_parent ) :
controlLayout = new QHBoxLayout( this ); controlLayout = new QHBoxLayout( this );
controlLayout->setMargin( 0 ); controlLayout->setMargin( 0 );
controlLayout->setSpacing( 0 ); controlLayout->setSpacing( 0 );
#if DEBUG_LAYOUT #ifdef DEBUG_LAYOUT
setStyleSheet( "background: orange "); setStyleSheet( "background: orange ");
#endif #endif
...@@ -693,7 +693,7 @@ InputControlsWidget::InputControlsWidget( intf_thread_t *_p_i, QWidget *_parent ...@@ -693,7 +693,7 @@ InputControlsWidget::InputControlsWidget( intf_thread_t *_p_i, QWidget *_parent
controlLayout = new QHBoxLayout( this ); controlLayout = new QHBoxLayout( this );
controlLayout->setMargin( 0 ); controlLayout->setMargin( 0 );
controlLayout->setSpacing( 0 ); controlLayout->setSpacing( 0 );
#if DEBUG_LAYOUT #ifdef DEBUG_LAYOUT
setStyleSheet( "background: green "); setStyleSheet( "background: green ");
#endif #endif
......
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