summaryrefslogtreecommitdiff
path: root/src/plugins/vcsbase/vcsbaseplugin.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-02-12 10:09:03 +0200
committerOrgad Shaneh <orgads@gmail.com>2014-02-12 12:42:40 +0100
commitdafaab25bd26a034e0b7109a64ec4c8068c95932 (patch)
tree0b2465ef7355ed11bdc19183f5f97c62505f6406 /src/plugins/vcsbase/vcsbaseplugin.h
parent0bb318939bdeb8728d2ae04dde6e261e0f31b304 (diff)
downloadqt-creator-dafaab25bd26a034e0b7109a64ec4c8068c95932.tar.gz
VCS: Introduce NoOutput command flag
Suppresses all kinds of output Change-Id: I3bd2173fc3efcfcc2ce7434d9545cd1492d7c0ab Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/vcsbase/vcsbaseplugin.h')
-rw-r--r--src/plugins/vcsbase/vcsbaseplugin.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/vcsbase/vcsbaseplugin.h b/src/plugins/vcsbase/vcsbaseplugin.h
index 193971b2d6..890762a694 100644
--- a/src/plugins/vcsbase/vcsbaseplugin.h
+++ b/src/plugins/vcsbase/vcsbaseplugin.h
@@ -174,7 +174,9 @@ public:
FullySynchronously = 0x100, // Suppress local event loop (in case UI actions are
// triggered by file watchers).
ExpectRepoChanges = 0x200, // Expect changes in repository by the command
- SilentOutput = 0x400 // With ShowStdOutInLogWindow - append output silently
+ SilentOutput = 0x400, // With ShowStdOutInLogWindow - append output silently
+ NoOutput = SuppressStdErrInLogWindow | SuppressFailMessageInLogWindow
+ | SuppressCommandLogging
};
static Utils::SynchronousProcessResponse runVcs(const QString &workingDir,