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.
This commit is contained in:
Robert Loehning
2010-05-21 19:35:33 +02:00
parent 61cf2d0a39
commit 91cd56e0c6

View File

@@ -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()