summaryrefslogtreecommitdiffstats
path: root/profile-widget/diveprofileitem.cpp
diff options
context:
space:
mode:
authorGravatar Martin Měřinský <mermar@centrum.cz>2017-02-20 09:29:20 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-03-04 12:08:17 -0800
commitb14301a84c28cb65abfbc970f20b67d41bcda26a (patch)
tree8912d2dbe661a904c5883aed219da309fe98dcae /profile-widget/diveprofileitem.cpp
parent869a7fcfcc6691f81a77ed56d7a437d34b623865 (diff)
downloadsubsurface-b14301a84c28cb65abfbc970f20b67d41bcda26a.tar.gz
heartrate, heartbeat > heart rate
Diffstat (limited to 'profile-widget/diveprofileitem.cpp')
-rw-r--r--profile-widget/diveprofileitem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/profile-widget/diveprofileitem.cpp b/profile-widget/diveprofileitem.cpp
index 83857abf8..7caa8ce39 100644
--- a/profile-widget/diveprofileitem.cpp
+++ b/profile-widget/diveprofileitem.cpp
@@ -292,7 +292,7 @@ void DiveHeartrateItem::modelDataChanged(const QModelIndex &topLeft, const QMode
qDeleteAll(texts);
texts.clear();
- // Ignore empty values. a heartrate of 0 would be a bad sign.
+ // Ignore empty values. a heart rate of 0 would be a bad sign.
QPolygonF poly;
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
int hr = dataModel->index(i, vDataColumn).data().toInt();
@@ -371,7 +371,7 @@ void DivePercentageItem::modelDataChanged(const QModelIndex &topLeft, const QMod
if (!shouldCalculateStuff(topLeft, bottomRight))
return;
- // Ignore empty values. a heartrate of 0 would be a bad sign.
+ // Ignore empty values. a heart rate of 0 would be a bad sign.
QPolygonF poly;
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
sec = dataModel->index(i, hDataColumn).data().toInt();
@@ -451,7 +451,7 @@ void DiveAmbPressureItem::modelDataChanged(const QModelIndex &topLeft, const QMo
if (!shouldCalculateStuff(topLeft, bottomRight))
return;
- // Ignore empty values. a heartrate of 0 would be a bad sign.
+ // Ignore empty values. a heart rate of 0 would be a bad sign.
QPolygonF poly;
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
int hr = dataModel->index(i, vDataColumn).data().toInt();
@@ -499,7 +499,7 @@ void DiveGFLineItem::modelDataChanged(const QModelIndex &topLeft, const QModelIn
if (!shouldCalculateStuff(topLeft, bottomRight))
return;
- // Ignore empty values. a heartrate of 0 would be a bad sign.
+ // Ignore empty values. a heart rate of 0 would be a bad sign.
QPolygonF poly;
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
int hr = dataModel->index(i, vDataColumn).data().toInt();