Skip to content
Snippets Groups Projects
Commit 954a8419 authored by Jonathan Guinet's avatar Jonathan Guinet
Browse files

STYLE : add space in parameter description.

parent 2f4ea71f
No related branches found
No related tags found
No related merge requests found
......@@ -180,7 +180,7 @@ void QtWidgetView::SetDocParameters( std::string & val )
// Check if mandatory parameter are present and have value
if( param->GetMandatory() == true )
{
oss << "<body><i>"<< param->GetName() << "</i>: "<<param->GetDescription()<<"</body>";
oss << "<body><i>"<< param->GetName() << "</i> : "<<param->GetDescription()<<"</body>";
}
}
oss << "</body></li>";
......@@ -195,7 +195,7 @@ void QtWidgetView::SetDocParameters( std::string & val )
// Check if mandatory parameter are present and have value
if( param->GetMandatory() == false )
{
oss << "<body><i>" <<param->GetName() << "</i>: "<<param->GetDescription()<<"</body>";
oss << "<body><i>" <<param->GetName() << "</i> : "<<param->GetDescription()<<"</body>";
found = true;
}
}
......
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