diff --git a/modules/gui/qt4/components/preferences_widgets.cpp b/modules/gui/qt4/components/preferences_widgets.cpp index bc8cb61a2f055e077fbb9db19c8f98bbf5003507..20ffa05559e6307149d9e8f48f21a0b1d2a6fa3f 100644 --- a/modules/gui/qt4/components/preferences_widgets.cpp +++ b/modules/gui/qt4/components/preferences_widgets.cpp @@ -723,22 +723,22 @@ ModuleListConfigControl::~ModuleListConfigControl() delete groupBox; } -#define CHECKBOX_LISTS \ -{ \ - QCheckBox *cb = new QCheckBox( qtr( module_GetLongName( p_parser ) ) );\ - checkBoxListItem *cbl = new checkBoxListItem; \ -\ - CONNECT( cb, stateChanged( int ), this, onUpdate() );\ - const char *help = module_get_help( p_parser ); \ - if( help != NULL ) \ - cb->setToolTip( formatTooltip( qtr( help ) ) ); \ - cbl->checkBox = cb; \ -\ - cbl->psz_module = strdup( module_get_object( p_parser ) ); \ - modules.append( cbl ); \ -\ +void ModuleListConfigControl::checkbox_lists( module_t *p_parser ) +{ + QCheckBox *cb = new QCheckBox( qtr( module_GetLongName( p_parser ) ) ); + checkBoxListItem *cbl = new checkBoxListItem; + + CONNECT( cb, stateChanged( int ), this, onUpdate() ); + const char *help = module_get_help( p_parser ); + if( help != NULL ) + cb->setToolTip( formatTooltip( qtr( help ) ) ); + cbl->checkBox = cb; + + cbl->psz_module = strdup( module_get_object( p_parser ) ); + modules.append( cbl ); + if( p_item->value.psz && strstr( p_item->value.psz, cbl->psz_module ) ) \ - cbl->checkBox->setChecked( true ); \ + cbl->checkBox->setChecked( true ); } @@ -764,14 +764,14 @@ void ModuleListConfigControl::finish( bool bycat ) if( p_cfg->i_type == CONFIG_SUBCATEGORY && p_cfg->value.i == p_item->min.i ) { - CHECKBOX_LISTS; + checkbox_lists( p_parser ); } } module_config_free (p_config); } else if( module_provides( p_parser, p_item->psz_type ) ) { - CHECKBOX_LISTS; + checkbox_lists(p_parser); } } module_list_free( p_list ); @@ -785,7 +785,6 @@ void ModuleListConfigControl::finish( bool bycat ) groupBox->setToolTip( formatTooltip(tipText) ); } } -#undef CHECKBOX_LISTS QString ModuleListConfigControl::getValue() const { diff --git a/modules/gui/qt4/components/preferences_widgets.hpp b/modules/gui/qt4/components/preferences_widgets.hpp index fd7f7b7d723d53ff483c624f73394495d28b9a50..bc509bee130b2ba7d0d709643b5a85337f8f4eec 100644 --- a/modules/gui/qt4/components/preferences_widgets.hpp +++ b/modules/gui/qt4/components/preferences_widgets.hpp @@ -394,6 +394,7 @@ public slots: void onUpdate(); private: void finish( bool ); + void checkbox_lists(module_t*); QList<checkBoxListItem*> modules; QGroupBox *groupBox; QLineEdit *text;