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