mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Address uninitialized member warnings
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
85dfb88f51
commit
1ecc9b0cc0
19 changed files with 50 additions and 18 deletions
|
@ -407,7 +407,9 @@ QString TemperatureAxis::textForValue(double value)
|
|||
return QString::number(mkelvin_to_C((int)value));
|
||||
}
|
||||
|
||||
PartialGasPressureAxis::PartialGasPressureAxis()
|
||||
PartialGasPressureAxis::PartialGasPressureAxis() :
|
||||
DiveCartesianAxis(),
|
||||
model(NULL)
|
||||
{
|
||||
connect(PreferencesDialog::instance(), SIGNAL(settingsChanged()), this, SLOT(settingsChanged()));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue