aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_equipment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/preferences/preferences_equipment.cpp')
-rw-r--r--desktop-widgets/preferences/preferences_equipment.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop-widgets/preferences/preferences_equipment.cpp b/desktop-widgets/preferences/preferences_equipment.cpp
index 7435f3539..00bd9aa53 100644
--- a/desktop-widgets/preferences/preferences_equipment.cpp
+++ b/desktop-widgets/preferences/preferences_equipment.cpp
@@ -24,9 +24,10 @@ void PreferencesEquipment::refreshSettings()
{
ui->display_unused_tanks->setChecked(prefs.display_unused_tanks);
ui->default_cylinder->clear();
- for (int i = 0; i < MAX_TANK_INFO && tank_info[i].name != NULL; i++) {
- ui->default_cylinder->addItem(tank_info[i].name);
- if (qPrefEquipment::default_cylinder() == tank_info[i].name)
+ for (int i = 0; i < tank_info_table.nr; i++) {
+ const tank_info &ti = tank_info_table.infos[i];
+ ui->default_cylinder->addItem(ti.name);
+ if (qPrefEquipment::default_cylinder() == ti.name)
ui->default_cylinder->setCurrentIndex(i);
}
}