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

STYLE : supress \n in error message

parent 8a3cdd60
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,6 @@ MsgReporter
::SendMsg(const std::string & msg)
{
this->textArea->insert(msg.c_str());
this->textArea->insert("\n");
this->textArea->show_insert_position();
Fl::check();
}
......@@ -87,7 +86,6 @@ MsgReporter
{
this->textArea->insert("ERROR: ");
this->textArea->insert(msg.c_str());
this->textArea->insert("\n");
this->textArea->show_insert_position();
this->Show();
Fl::check();
......
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