mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Small fixes to the model
Prevent a crash when no cylinder type description is set. Correctly calculate the cylinder volume. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
76903849de
commit
7bf07b890a
1 changed files with 5 additions and 4 deletions
|
@ -123,7 +123,7 @@ bool CylindersModel::setData(const QModelIndex& index, const QVariant& value, in
|
|||
case TYPE:
|
||||
if (!value.isNull()) {
|
||||
char *text = value.toByteArray().data();
|
||||
if (strcmp(cyl->type.description, text)) {
|
||||
if (!cyl->type.description || strcmp(cyl->type.description, text)) {
|
||||
cyl->type.description = strdup(text);
|
||||
mark_divelist_changed(TRUE);
|
||||
}
|
||||
|
@ -431,9 +431,10 @@ QVariant TankInfoModel::data(const QModelIndex& index, int role) const
|
|||
|
||||
int bar = ((info->psi) ? psi_to_bar(info->psi) : info->bar) * 1000 + 0.5;
|
||||
|
||||
if (info->cuft) {
|
||||
double airvolume = cuft_to_l(info->cuft) * 1000.0;
|
||||
ml = airvolume / bar_to_atm(bar) + 0.5;
|
||||
if (info->cuft && info->psi) {
|
||||
pressure_t p;
|
||||
p.mbar = psi_to_mbar(info->psi);
|
||||
ml = wet_volume(info->cuft, p);
|
||||
}
|
||||
if (role == Qt::DisplayRole) {
|
||||
switch(index.column()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue