summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/io/qsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qsettings.cpp b/src/corelib/io/qsettings.cpp
index eeed759bc0..855ba0680b 100644
--- a/src/corelib/io/qsettings.cpp
+++ b/src/corelib/io/qsettings.cpp
@@ -132,7 +132,7 @@ namespace {
Path() {}
Path(const QString & p, bool ud) : path(p), userDefined(ud) {}
QString path;
- bool userDefined; //!< true - user defined, overridden by setPath
+ bool userDefined = false; //!< true - user defined, overridden by setPath
};
}
typedef QHash<int, Path> PathHash;