summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/qsettingswrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/installer/qsettingswrapper.cpp')
-rw-r--r--src/libs/installer/qsettingswrapper.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/libs/installer/qsettingswrapper.cpp b/src/libs/installer/qsettingswrapper.cpp
index d7cb27828..89f39a14e 100644
--- a/src/libs/installer/qsettingswrapper.cpp
+++ b/src/libs/installer/qsettingswrapper.cpp
@@ -56,38 +56,38 @@ class QSettingsWrapper::Private
{
public:
Private(const QString &organization, const QString &application)
- : native(true),
- settings(organization, application),
- socket(0)
+ : native(true)
+ , settings(organization, application)
+ , socket(0)
{
}
Private(QSettings::Scope scope, const QString &organization, const QString &application)
- : native(true),
- settings(scope, organization, application),
- socket(0)
+ : native(true)
+ , settings(scope, organization, application)
+ , socket(0)
{
}
Private(QSettings::Format format, QSettings::Scope scope, const QString &organization,
const QString &application)
- : native(format == QSettings::NativeFormat),
- settings(format, scope, organization, application),
- socket(0)
+ : native(format == QSettings::NativeFormat)
+ , settings(format, scope, organization, application)
+ , socket(0)
{
}
Private(const QString &fileName, QSettings::Format format)
- : native(format == QSettings::NativeFormat),
- fileName(fileName),
- settings(fileName, format),
- socket(0)
+ : native(format == QSettings::NativeFormat)
+ , fileName(fileName)
+ , settings(fileName, format)
+ , socket(0)
{
}
Private()
- : native(true),
- socket(0)
+ : native(true)
+ , socket(0)
{
}