From: Jean-Baptiste Kempf Date: Sun, 10 Feb 2008 02:02:59 +0000 (+0000) Subject: Qt4 - tree: remove the \n at the end of each line... X-Git-Tag: 0.9.0-test0~2740 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=eb4e90d1ab15a7ce44d085d9441af00732bfadc6;p=vlc Qt4 - tree: remove the \n at the end of each line... --- diff --git a/modules/gui/qt4/dialogs/messages.cpp b/modules/gui/qt4/dialogs/messages.cpp index 9be3a7abb6..333b646859 100644 --- a/modules/gui/qt4/dialogs/messages.cpp +++ b/modules/gui/qt4/dialogs/messages.cpp @@ -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++ ) {