summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/settings.cpp
diff options
context:
space:
mode:
authorjkobus <jaroslaw.kobus@digia.com>2014-06-05 09:23:03 +0200
committerJarek Kobus <jaroslaw.kobus@digia.com>2014-06-06 14:00:54 +0200
commitb4cdc6c9e3ecdc4acbe1882ddd4a3888bb8f2d7c (patch)
tree23ed129e242ac9332025942b9624f3f3e893bd4e /src/libs/installer/settings.cpp
parent2d9cea2d3b1a7df5c651c37f31688605f7b40ef7 (diff)
Fix tutorial example
- remove translations part - replace installation dir (root) with home in order to properly finish the installer wizard with default values - AllowSpaceInPath is now true by default (ChangeLog updated) Change-Id: I84e372ac4da05964d90851bf592fc87ee9409e3b Reviewed-by: Kai Koehne <kai.koehne@digia.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.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 56041916e..81972f2c2 100644
--- a/src/libs/installer/settings.cpp
+++ b/src/libs/installer/settings.cpp
@@ -432,7 +432,7 @@ QString Settings::configurationFileName() const
bool Settings::allowSpaceInPath() const
{
- return d->m_data.value(scAllowSpaceInPath, false).toBool();
+ return d->m_data.value(scAllowSpaceInPath, true).toBool();
}
bool Settings::allowNonAsciiCharacters() const