Commit 62d91d41 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Compile fix for L4MERS on Qt4.2 :D

parent ba274b8b
...@@ -103,7 +103,11 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf ) ...@@ -103,7 +103,11 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
/* Margins */ /* Margins */
tree_panel_l->setMargin( 1 ); tree_panel_l->setMargin( 1 );
#if HAS_QT43
main_panel_l->setContentsMargins( 6, 0, 0, 3 ); main_panel_l->setContentsMargins( 6, 0, 0, 3 );
#else
main_panel_l->setMargin( 3 );
#endif
for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = NULL; for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = 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