diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2013-06-10 19:49:18 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2013-06-11 10:30:55 +0200 |
commit | 69d0d6cdca6756fec05af609db6d6a14bb43c0e9 (patch) | |
tree | 45eabce2e608760f2c6fe96bf24add0e25ddc1a9 /src/plugins/git/gitversioncontrol.cpp | |
parent | 5cb29aec0b104179919d14573c7af88610c39e87 (diff) | |
download | qt-creator-69d0d6cdca6756fec05af609db6d6a14bb43c0e9.tar.gz |
Git: Style fixes
Change-Id: I600e939e99de77e92de1ff068a5ebad98eb736ca
Reviewed-by: Petar Perisin <petar.perisin@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/git/gitversioncontrol.cpp')
-rw-r--r-- | src/plugins/git/gitversioncontrol.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp index 605fb8c3e7..9c1c81fda2 100644 --- a/src/plugins/git/gitversioncontrol.cpp +++ b/src/plugins/git/gitversioncontrol.cpp @@ -142,8 +142,9 @@ QString GitVersionControl::vcsCreateSnapshot(const QString &topLevel) QString keyword = QLatin1String(stashMessageKeywordC) + QString::number(n++); const QString stashMessage = m_client->synchronousStash(topLevel, keyword, - GitClient::StashImmediateRestore|GitClient::StashIgnoreUnchanged, - &repositoryUnchanged); + GitClient::StashImmediateRestore + | GitClient::StashIgnoreUnchanged, + &repositoryUnchanged); if (!stashMessage.isEmpty()) return stashMessage; if (repositoryUnchanged) { |