summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorNiels Weber <niels.weber@digia.com>2015-02-03 12:56:57 +0100
committerNiels Weber <niels.weber@theqtcompany.com>2015-02-03 12:24:46 +0000
commit5c14027b2cc495d596d0741b052aec6159646ba8 (patch)
tree870e4d4983186149d7181861a2944caf23837b34 /src/libs
parent380670252dfa56194038ea3af134df9998c52288 (diff)
Revert "Allow spaces in path by default"
The change did the opposite of what it claims. This reverts commit b843bff42705044eb88bc87298873ed6f7a93c55. Change-Id: I79b1527a95ce64472b7cc20bc83649aef1b90127 Reviewed-by: Karsten Heimrich <karsten.heimrich@theqtcompany.com>
Diffstat (limited to 'src/libs')
-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 b591eed90..26d0f7600 100644
--- a/src/libs/installer/settings.cpp
+++ b/src/libs/installer/settings.cpp
@@ -474,7 +474,7 @@ bool Settings::createLocalRepository() 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