]> git.sesse.net Git - vlc/commitdiff
Qt4 - tree: remove the \n at the end of each line...
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 10 Feb 2008 02:02:59 +0000 (02:02 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 10 Feb 2008 02:02:59 +0000 (02:02 +0000)
modules/gui/qt4/dialogs/messages.cpp

index 9be3a7abb6946b8f1bd2f4e49778a927f14f5869..333b646859711d63a48891766a468ec49607ffa0 100644 (file)
@@ -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++ )
     {