Commit eb4e90d1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - tree: remove the \n at the end of each line...

parent 816f8089
......@@ -206,10 +206,10 @@ void MessagesDialog::buildTree( QTreeWidgetItem *parentItem, vlc_object_t *p_obj
if( p_obj->psz_object_name )
item->setText( 0, qfu( p_obj->psz_object_type ) + " \"" +
qfu( p_obj->psz_object_name ) + "\" (" +
QString::number(p_obj->i_object_id) + ")\n" );
QString::number(p_obj->i_object_id) + ")" );
else
item->setText( 0, qfu( p_obj->psz_object_type ) + " (" +
QString::number(p_obj->i_object_id) + ")\n" );
QString::number(p_obj->i_object_id) + ")" );
for( int i=0; i < p_obj->i_children; i++ )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment