Commit 5422c4fa authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: Remove redundant code

parent afe774e0
...@@ -64,15 +64,13 @@ ...@@ -64,15 +64,13 @@
**********************************************************************/ **********************************************************************/
VideoWidget::VideoWidget( intf_thread_t *_p_i ) VideoWidget::VideoWidget( intf_thread_t *_p_i )
: QFrame( NULL ) : QFrame( NULL ) , p_intf( _p_i )
, p_intf( _p_i )
{ {
/* Set the policy to expand in both directions */ /* Set the policy to expand in both directions */
// setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ); // setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
layout = new QHBoxLayout( this ); layout = new QHBoxLayout( this );
layout->setContentsMargins( 0, 0, 0, 0 ); layout->setContentsMargins( 0, 0, 0, 0 );
setLayout( layout );
stable = NULL; stable = 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