From kdevelop-bugs Mon Feb 20 04:25:10 2006 From: kdevelop-bugs-admin () barney ! cs ! uni-potsdam ! de Date: Mon, 20 Feb 2006 04:25:10 +0000 To: kdevelop-bugs Subject: [Bug 105376] Application output to the output window is removing leading spaces. Message-Id: <20060220042510.30874.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306945709021 ------- 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(); }