Skip to content
Snippets Groups Projects
Commit ba4fa0d3 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

ENH: Fixed intialization of StringListInterface in...

ENH: Fixed intialization of StringListInterface in QtWidgetInputImageListParameter::DoCreateWidget().
parent 99957fcc
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,11 @@ QtWidgetInputImageListParameter
assert( widget->GetItemModel() );
widget->GetItemModel()->SetStringList( m_InputImageListParam.GetPointer() );
assert( dynamic_cast< StringListInterface * >( GetParam() )!=nullptr );
widget->GetItemModel()->SetStringList(
dynamic_cast< StringListInterface * >( GetParam() )
);
//
// Global Layout
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment