summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-01-23 11:33:55 +0100
committerTobias Hunger <tobias.hunger@digia.com>2014-01-23 11:34:38 +0100
commitc9f2ca836886fda40c2508e82f6580487b35f314 (patch)
tree95dd86235f7e59d27e77a7fd2a4fc6779b219fd3
parente18490b65a591762f85163349345166c86821945 (diff)
downloadqt-creator-c9f2ca836886fda40c2508e82f6580487b35f314.tar.gz
ProjectNameValidatingLineEdit: Fix WS
Change-Id: I41b5fdee5d4f143ca68cc1c6d07cd0860fe9d810 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
-rw-r--r--src/libs/utils/projectnamevalidatinglineedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/projectnamevalidatinglineedit.cpp b/src/libs/utils/projectnamevalidatinglineedit.cpp
index 8a1136a8c1..001f8999ad 100644
--- a/src/libs/utils/projectnamevalidatinglineedit.cpp
+++ b/src/libs/utils/projectnamevalidatinglineedit.cpp
@@ -48,7 +48,7 @@ bool ProjectNameValidatingLineEdit::validateProjectName(const QString &name, QSt
if (name.contains(QLatin1Char('.'))) {
if (errorMessage)
*errorMessage = tr("Invalid character '.'.");
- return false;
+ return false;
}
return true;
}