mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-28 18:05:36 -04:00
[partition] Initialize members of PartitionEntry
This commit is contained in:
parent
04b4e37bd0
commit
abf1f14604
1 changed files with 6 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
||||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
||||||
*
|
*
|
||||||
* Copyright 2018, Collabora Ltd
|
* Copyright 2018, Collabora Ltd
|
||||||
|
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
||||||
*
|
*
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
* Calamares is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -47,11 +48,11 @@ public:
|
||||||
{
|
{
|
||||||
QString partLabel;
|
QString partLabel;
|
||||||
QString partMountPoint;
|
QString partMountPoint;
|
||||||
int partFileSystem;
|
int partFileSystem = 0;
|
||||||
double partSize;
|
double partSize = 0.0L;
|
||||||
SizeUnit partSizeUnit;
|
SizeUnit partSizeUnit = Percent;
|
||||||
double partMinSize;
|
double partMinSize = 0.0L;
|
||||||
SizeUnit partMinSizeUnit;
|
SizeUnit partMinSizeUnit = Percent;
|
||||||
};
|
};
|
||||||
|
|
||||||
PartitionLayout();
|
PartitionLayout();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue