------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=105376 ------- Additional Comments From mattr kde org 2006-02-20 05:25 ------- SVN commit 511490 by mattr: Don't strip whitespace when inserting. CCBUG: 105376 M +2 -2 processwidget.cpp --- branches/KDE/3.5/kdevelop/lib/widgets/processwidget.cpp #511489:511490 @ -123,7 +123,7 @ void ProcessWidget::insertStdoutLine(const QString &line) { - insertItem(new ProcessListBoxItem(line.stripWhiteSpace(), + insertItem(new ProcessListBoxItem(line, ProcessListBoxItem::Normal)); maybeScrollToBottom(); } @ -131,7 +131,7 @ void ProcessWidget::insertStderrLine(const QString &line) { - insertItem(new ProcessListBoxItem(line.stripWhiteSpace(), + insertItem(new ProcessListBoxItem(line, ProcessListBoxItem::Error)); maybeScrollToBottom(); }