mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Use existing helper function
And remove spurious extra ';' Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
662b1061f0
commit
83a7f1f5b4
1 changed files with 3 additions and 3 deletions
|
@ -175,7 +175,7 @@ cylinder_t* CylindersModel::cylinderAt(const QModelIndex& index)
|
|||
// so we only implement the two columns we care about
|
||||
void CylindersModel::passInData(const QModelIndex& index, const QVariant& value)
|
||||
{
|
||||
cylinder_t *cyl = ¤t->cylinder[index.row()];
|
||||
cylinder_t *cyl = cylinderAt(index);
|
||||
switch(index.column()) {
|
||||
case SIZE:
|
||||
if (cyl->type.size.mliter != value.toInt()) {
|
||||
|
@ -196,7 +196,7 @@ void CylindersModel::passInData(const QModelIndex& index, const QVariant& value)
|
|||
|
||||
bool CylindersModel::setData(const QModelIndex& index, const QVariant& value, int role)
|
||||
{
|
||||
cylinder_t *cyl = ¤t->cylinder[index.row()];
|
||||
cylinder_t *cyl = cylinderAt(index);
|
||||
switch(index.column()) {
|
||||
case TYPE:
|
||||
if (!value.isNull()) {
|
||||
|
@ -1510,7 +1510,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
|
|||
switch (role) {
|
||||
case Qt::DisplayRole: {
|
||||
struct DiveItem di;
|
||||
di.dive = dive;;
|
||||
di.dive = dive;
|
||||
char buf[80];
|
||||
|
||||
const QString unknown = tr("unknown");
|
||||
|
|
Loading…
Add table
Reference in a new issue