From 91cd56e0c606f342affb087e254346f78986c3f1 Mon Sep 17 00:00:00 2001
From: Robert Loehning <robert.loehning@nokia.com>
Date: Fri, 21 May 2010 19:35:33 +0200
Subject: [PATCH] Anticipatory code fix, will currently not affect behavior.

appendDataSilently() is only called from appendData() which is not
silent anyway. The connect in GitClient::createCommand() is currently
not executed.
---
 src/plugins/vcsbase/vcsbaseoutputwindow.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/vcsbase/vcsbaseoutputwindow.cpp b/src/plugins/vcsbase/vcsbaseoutputwindow.cpp
index df6f201d9ad..d89a9b9ba5c 100644
--- a/src/plugins/vcsbase/vcsbaseoutputwindow.cpp
+++ b/src/plugins/vcsbase/vcsbaseoutputwindow.cpp
@@ -381,7 +381,7 @@ void VCSBaseOutputWindow::appendData(const QByteArray &data)
 
 void VCSBaseOutputWindow::appendDataSilently(const QByteArray &data)
 {
-    append(QTextCodec::codecForLocale()->toUnicode(data));
+    appendSilently(QTextCodec::codecForLocale()->toUnicode(data));
 }
 
 VCSBaseOutputWindow *VCSBaseOutputWindow::instance()
-- 
GitLab