mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
planner: move repopulation of models to planner
The gas and dive-type models were repopulated in the diveplanner model. The former are used in the planner. However, the latter is also used outside of the planner, when editing non-planned dives. Thus the former shouldn't be repopulated by the latter, but by the code that needs it. Side note: repopulating the dive-type model seems to make no sense whatsoever since the values never change, but let's keep it for now. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
d51589b9a7
commit
3dd09b31e3
3 changed files with 5 additions and 5 deletions
|
@ -51,7 +51,7 @@ DiveTypeSelectionModel *DiveTypeSelectionModel::instance()
|
|||
|
||||
void DiveTypeSelectionModel::repopulate()
|
||||
{
|
||||
QStringList modes = QStringList();
|
||||
QStringList modes;
|
||||
for (int i = 0; i < FREEDIVE; i++)
|
||||
modes.append(gettextFromC::tr(divemode_text_ui[i]));
|
||||
setStringList(modes);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue