mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Change prefs.show_units_table to bool
Bool is the correct choice for this option. int was used before because it was not clear to me how and if I can use bool in this C file. Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
178dcbc0c6
commit
bd88306722
4 changed files with 15 additions and 13 deletions
|
@ -1603,7 +1603,7 @@ int UnitsSettings::durationUnits() const
|
|||
return prefs.units.duration_units;
|
||||
}
|
||||
|
||||
int UnitsSettings::showUnitsTable() const
|
||||
bool UnitsSettings::showUnitsTable() const
|
||||
{
|
||||
return prefs.units.show_units_table;
|
||||
}
|
||||
|
@ -1698,7 +1698,7 @@ void UnitsSettings::setDurationUnits(int value)
|
|||
emit durationUnitChanged(value);
|
||||
}
|
||||
|
||||
void UnitsSettings::setShowUnitsTable(int value)
|
||||
void UnitsSettings::setShowUnitsTable(bool value)
|
||||
{
|
||||
if (value == prefs.units.show_units_table)
|
||||
return;
|
||||
|
@ -2193,7 +2193,7 @@ void SettingsObjectWrapper::load()
|
|||
}
|
||||
GET_UNIT("vertical_speed_time", vertical_speed_time, units::MINUTES, units::SECONDS);
|
||||
GET_UNIT3("duration_units", duration_units, units::MIXED, units::ALWAYS_HOURS, units::DURATION);
|
||||
GET_UNIT_INT("show_units_table", show_units_table);
|
||||
GET_UNIT_BOOL("show_units_table", show_units_table);
|
||||
GET_BOOL("coordinates", coordinates_traditional);
|
||||
s.endGroup();
|
||||
s.beginGroup("TecDetails");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue