Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
eb4e90d1
Commit
eb4e90d1
authored
Feb 10, 2008
by
Jean-Baptiste Kempf
Browse files
Qt4 - tree: remove the \n at the end of each line...
parent
816f8089
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/messages.cpp
View file @
eb4e90d1
...
...
@@ -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
++
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment