summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/settings.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2014-12-04 12:55:47 +0100
committerKai Koehne <kai.koehne@theqtcompany.com>2014-12-08 13:49:52 +0100
commitb843bff42705044eb88bc87298873ed6f7a93c55 (patch)
tree447d8e3185db0a4d96521c08157299a5d5fe3302 /src/libs/installer/settings.cpp
parent094ec05349bdf6f9981e6144ee773c13f03a438e (diff)
Allow spaces in path by default
Change-Id: Iff1e5056a2465977fd6930f94a649ce51dd0fcd0 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/libs/installer/settings.cpp')
-rw-r--r--src/libs/installer/settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/settings.cpp b/src/libs/installer/settings.cpp
index d38a39eb6..4ff66a7da 100644
--- a/src/libs/installer/settings.cpp
+++ b/src/libs/installer/settings.cpp
@@ -452,7 +452,7 @@ QString Settings::configurationFileName() const
bool Settings::allowSpaceInPath() const
{
- return d->m_data.value(scAllowSpaceInPath, true).toBool();
+ return d->m_data.value(scAllowSpaceInPath, false).toBool();
}
bool Settings::allowNonAsciiCharacters() const