Commit de2b1cff authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: Use append iso push_*

parent 0d348f07
...@@ -706,7 +706,7 @@ ModuleListConfigControl::~ModuleListConfigControl() ...@@ -706,7 +706,7 @@ ModuleListConfigControl::~ModuleListConfigControl()
cbl->checkBox = cb; \ cbl->checkBox = cb; \
\ \
cbl->psz_module = strdup( module_get_object( p_parser ) ); \ cbl->psz_module = strdup( module_get_object( p_parser ) ); \
modules.push_back( cbl ); \ modules.append( cbl ); \
\ \
if( p_item->value.psz && strstr( p_item->value.psz, cbl->psz_module ) ) \ if( p_item->value.psz && strstr( p_item->value.psz, cbl->psz_module ) ) \
cbl->checkBox->setChecked( true ); \ cbl->checkBox->setChecked( true ); \
......
...@@ -338,7 +338,7 @@ void ExtensionListModel::updateList() ...@@ -338,7 +338,7 @@ void ExtensionListModel::updateList()
FOREACH_ARRAY( p_ext, p_mgr->extensions ) FOREACH_ARRAY( p_ext, p_mgr->extensions )
{ {
ext = new ExtensionCopy( p_ext ); ext = new ExtensionCopy( p_ext );
extensions.push_back( ext ); extensions.append( ext );
} }
FOREACH_END() FOREACH_END()
vlc_mutex_unlock( &p_mgr->lock ); vlc_mutex_unlock( &p_mgr->lock );
......
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