summaryrefslogtreecommitdiffstats
path: root/qt-ui/models.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r--qt-ui/models.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index b2f98bd52..53754a1ed 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -1607,14 +1607,16 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
if (col == 4)
return QString(tr("Duration: %1 min")).arg(di.displayDuration());
}
- // cylinder headings
+ // headings
if (row == 2) {
if (col == 0)
- return tr("Cylinder");
- if (col == 1)
- return tr("Gasmix");
+ return tr("Gas Used:");
if (col == 2)
- return tr("Gas Used");
+ return tr("SAC:");
+ if (col == 3)
+ return tr("Max. CNS:");
+ if (col == 4)
+ return tr("Weights:");
}
// cylinder data
if (row > 2 && row < 10 && row - 3 < MAX_CYLINDERS) {