Skip to content
Snippets Groups Projects
Commit 36d301dc authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ENH: add control on image for Qt

parent 30610499
No related branches found
No related tags found
No related merge requests found
...@@ -75,7 +75,7 @@ void QtWidgetInputImageParameter::SelectFile() ...@@ -75,7 +75,7 @@ void QtWidgetInputImageParameter::SelectFile()
else else
{ {
itk::OStringStream oss; itk::OStringStream oss;
oss << "The given file " << m_FileSelectionList[j]->GetFilename() << " is not valid."; oss << "The given file " << fileDialog.selectedFiles().at(0).toStdString() << " is not valid.";
this->GetModel()->SendLogWARNING( oss.str() ); this->GetModel()->SendLogWARNING( oss.str() );
} }
} }
......
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