From 41ea3ffea824cd026dbe021f86a403a8e793c356 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Mon, 15 Sep 2014 11:01:41 +0300 Subject: [PATCH] Git: Fix comment indentation in BranchAddDialog Change-Id: Ia1cd72b598555681e62444f6843a746049c5c04d Reviewed-by: Orgad Shaneh --- src/plugins/git/branchadddialog.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/plugins/git/branchadddialog.cpp b/src/plugins/git/branchadddialog.cpp index d96caf8d403..d640742f5c1 100644 --- a/src/plugins/git/branchadddialog.cpp +++ b/src/plugins/git/branchadddialog.cpp @@ -51,16 +51,16 @@ public: BranchNameValidator(const QStringList &localBranches, QObject *parent = 0) : QValidator(parent), m_invalidChars(QLatin1String( - "\\s" // no whitespace - "|~" // no "~" - "|\\^" // no "^" - "|\\[" // no "[" - "|\\.\\." // no ".." - "|/\\." // no slashdot - "|:" // no ":" - "|@\\{" // no "@{" sequence - "|\\\\" // no backslash - "|//" // no double slash + "\\s" // no whitespace + "|~" // no "~" + "|\\^" // no "^" + "|\\[" // no "[" + "|\\.\\." // no ".." + "|/\\." // no slashdot + "|:" // no ":" + "|@\\{" // no "@{" sequence + "|\\\\" // no backslash + "|//" // no double slash "|^[/-]" // no leading slash or dash )), m_localBranches(localBranches)