diff options
| author | ck <qt-info@nokia.com> | 2010-07-02 13:17:42 +0200 |
|---|---|---|
| committer | ck <qt-info@nokia.com> | 2010-07-02 13:17:42 +0200 |
| commit | 07c83490cf55fa95ce86f6edb225ad0032c0a84b (patch) | |
| tree | 71ffdce4b027a0b4718a83fe72aef25b8fae6c4a /src/plugins/git/gitcommand.cpp | |
| parent | 161e03227b2aabcf263af86d07fca35e69f80bec (diff) | |
| download | qt-creator-07c83490cf55fa95ce86f6edb225ad0032c0a84b.tar.gz | |
Git: Fix misleading status message.
Reviewed-by: Friedemann Kleint
Diffstat (limited to 'src/plugins/git/gitcommand.cpp')
| -rw-r--r-- | src/plugins/git/gitcommand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitcommand.cpp b/src/plugins/git/gitcommand.cpp index 7483428eb9..f6b87d02a8 100644 --- a/src/plugins/git/gitcommand.cpp +++ b/src/plugins/git/gitcommand.cpp @@ -172,7 +172,7 @@ void GitCommand::run() // Special hack: Always produce output for diff if (ok && stdOut.isEmpty() && m_jobs.front().arguments.at(0) == QLatin1String("diff")) { - stdOut += "The file does not differ from HEAD"; + stdOut += "No difference to HEAD"; } else { // @TODO: Remove, see below if (ok && m_jobs.front().arguments.at(0) == QLatin1String("status")) |
