diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-02-23 15:28:31 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-23 15:28:31 -0800 |
commit | b5a02e50aa94c10d2c9f2062af6b4e8d9cfb9294 (patch) | |
tree | bbb1b714255c8c66fd9bf9d4d05d7f2d8f1c9d24 /qt-ui/profile/profilewidget2.h | |
parent | 76393a2f536dd6823b08ec3a53ffcb16b216bbf4 (diff) | |
download | subsurface-b5a02e50aa94c10d2c9f2062af6b4e8d9cfb9294.tar.gz |
New profile: create new class for DiveHeartrateItem
This allows us to give it a different color (red) and make it a smaller
size.
While implementing this I also fixed the size of the temperature text in
the new profile.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.h')
-rw-r--r-- | qt-ui/profile/profilewidget2.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index 6b244d251..31f806451 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -32,6 +32,7 @@ class DiveCartesianAxis; class DiveProfileItem; class TimeAxis; class DiveTemperatureItem; +class DiveHeartrateItem; class DiveGasPressureItem; class DiveCalculatedCeiling; class DiveCalculatedTissue; @@ -98,7 +99,7 @@ private: PartialPressureGasItem *pheGasItem; PartialPressureGasItem *po2GasItem; DiveCartesianAxis *heartBeatAxis; - DiveTemperatureItem *heartBeatItem; + DiveHeartrateItem *heartBeatItem; }; #endif // PROFILEWIDGET2_H |