aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/gitversioncontrol.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <[email protected]>2013-06-10 19:49:18 +0300
committerOrgad Shaneh <[email protected]>2013-06-11 10:30:55 +0200
commit69d0d6cdca6756fec05af609db6d6a14bb43c0e9 (patch)
tree45eabce2e608760f2c6fe96bf24add0e25ddc1a9 /src/plugins/git/gitversioncontrol.cpp
parent5cb29aec0b104179919d14573c7af88610c39e87 (diff)
Git: Style fixes
Change-Id: I600e939e99de77e92de1ff068a5ebad98eb736ca Reviewed-by: Petar Perisin <[email protected]> Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/git/gitversioncontrol.cpp')
-rw-r--r--src/plugins/git/gitversioncontrol.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp
index 605fb8c3e76..9c1c81fda22 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) {