Fix member initialization order [-Wreorder]
This commit is contained in:
parent
245082dc34
commit
dea859ee60
@ -54,8 +54,8 @@ class PackageStructurePrivate
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PackageStructurePrivate(PackageStructure *str)
|
PackageStructurePrivate(PackageStructure *str)
|
||||||
: internalStructure(0),
|
: q(str),
|
||||||
q(str)
|
internalStructure(0)
|
||||||
{}
|
{}
|
||||||
~PackageStructurePrivate()
|
~PackageStructurePrivate()
|
||||||
{}
|
{}
|
||||||
|
@ -66,10 +66,10 @@ ThemePrivate::ThemePrivate(QObject *parent)
|
|||||||
useGlobal(true),
|
useGlobal(true),
|
||||||
hasWallpapers(false),
|
hasWallpapers(false),
|
||||||
fixedName(false),
|
fixedName(false),
|
||||||
backgroundContrastEnabled(true),
|
|
||||||
backgroundContrast(0),
|
backgroundContrast(0),
|
||||||
backgroundIntensity(0),
|
backgroundIntensity(0),
|
||||||
backgroundSaturation(0),
|
backgroundSaturation(0),
|
||||||
|
backgroundContrastEnabled(true),
|
||||||
apiMajor(1),
|
apiMajor(1),
|
||||||
apiMinor(0),
|
apiMinor(0),
|
||||||
apiRevision(0)
|
apiRevision(0)
|
||||||
|
Loading…
Reference in New Issue
Block a user