Profile2: use unsigned int for the divecomputer number

display.h: dc_number is unsigned int, thus a couple of warnings
may pop-out.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2014-03-18 20:26:29 +02:00 committed by Dirk Hohndel
parent a908186716
commit 6d6721dc9b
3 changed files with 4 additions and 4 deletions

View file

@ -153,7 +153,7 @@ int DivePlotDataModel::id() const
return diveId; return diveId;
} }
int DivePlotDataModel::dcShown() const unsigned int DivePlotDataModel::dcShown() const
{ {
return dcNr; return dcNr;
} }

View file

@ -55,7 +55,7 @@ public:
void setDive(struct dive *d, const plot_info &pInfo); void setDive(struct dive *d, const plot_info &pInfo);
const plot_info &data() const; const plot_info &data() const;
int id() const; int id() const;
int dcShown() const; unsigned int dcShown() const;
double pheMax(); double pheMax();
double pn2Max(); double pn2Max();
double po2Max(); double po2Max();
@ -65,7 +65,7 @@ public:
private: private:
plot_info pInfo; plot_info pInfo;
int diveId; int diveId;
int dcNr; unsigned int dcNr;
}; };
#endif // DIVEPLOTDATAMODEL_H #endif // DIVEPLOTDATAMODEL_H

View file

@ -770,7 +770,7 @@ void ProfileWidget2::changeGas()
QPointF scenePos = mapToScene(mapFromGlobal(action->data().toPoint())); QPointF scenePos = mapToScene(mapFromGlobal(action->data().toPoint()));
QString gas = action->text(); QString gas = action->text();
// backup the things on the dataModel, since we will clear that out. // backup the things on the dataModel, since we will clear that out.
int diveComputer = dataModel->dcShown(); unsigned int diveComputer = dataModel->dcShown();
int diveId = dataModel->id(); int diveId = dataModel->id();
int o2, he; int o2, he;
int seconds = timeAxis->valueAt(scenePos); int seconds = timeAxis->valueAt(scenePos);