Skip to content
Snippets Groups Projects
Commit 4bb0fcbc authored by Schrödter, Tobias's avatar Schrödter, Tobias Committed by Schrödter, Tobias
Browse files

Move line break to end of line not in the middle (avoid multiple new lines)

parent f3d9fd6a
No related branches found
No related tags found
1 merge request!238Move line break to end of line not in the middle (avoid multiple new lines)
Pipeline #83461 passed
......@@ -597,17 +597,16 @@ void TrackerReal::exportTxt(
}
if(exportAngleOfView)
{
out << " viewAngle" << Qt::endl;
out << " viewAngle";
}
if(exportMarkerID)
{
out << " markerID" << Qt::endl;
}
else
{
out << Qt::endl;
out << " markerID";
}
out << Qt::endl;
if(exportUseM)
{
scale = .01f;
......@@ -653,17 +652,15 @@ void TrackerReal::exportTxt(
if(exportAngleOfView)
{
out << " " << at(i).at(j).angleOfView() << Qt::endl;
out << " " << at(i).at(j).angleOfView();
}
if(exportMarkerID)
{
out << " " << at(i).getMarkerID() << Qt::endl;
}
else
{
out << Qt::endl;
out << " " << at(i).getMarkerID();
}
out << Qt::endl;
}
}
}
......
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