diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2013-07-17 22:27:35 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2013-07-18 17:16:30 +0200 |
commit | b6fb9e3e542fa2596a16006cec40ad75af4b6433 (patch) | |
tree | c493b4092543584b1a734087f47e115d2ef5d909 /src/plugins/vcsbase/vcsbaseplugin.h | |
parent | 93dd2795bafedc2c062706bc9171d907410320c8 (diff) | |
download | qt-creator-b6fb9e3e542fa2596a16006cec40ad75af4b6433.tar.gz |
VCS: Support silent output on runVcs
Change-Id: If737b03f9d090076e9d739189479fb6725ae8856
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/vcsbase/vcsbaseplugin.h')
-rw-r--r-- | src/plugins/vcsbase/vcsbaseplugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/vcsbase/vcsbaseplugin.h b/src/plugins/vcsbase/vcsbaseplugin.h index 2e6a870575..8c1f5fe39b 100644 --- a/src/plugins/vcsbase/vcsbaseplugin.h +++ b/src/plugins/vcsbase/vcsbaseplugin.h @@ -166,7 +166,8 @@ public: ForceCLocale = 0x80, // Force C-locale for commands whose output is parsed. FullySynchronously = 0x100, // Suppress local event loop (in case UI actions are // triggered by file watchers). - ExpectRepoChanges = 0x200 // Expect changes in repository by the command + ExpectRepoChanges = 0x200, // Expect changes in repository by the command + SilentOutput = 0x400 // With ShowStdOutInLogWindow - append output silently }; static Utils::SynchronousProcessResponse runVcs(const QString &workingDir, |