aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-29 10:20:10 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-29 10:20:10 -0800
commitadf6d1e22d06cebcc7dc2a8a379618d8eb2df655 (patch)
tree272cc0ec4f88a7d147f64cf08036e5f2be1db026
parentb76a9478783ec3f5b4ee642c1af046960dacf798 (diff)
downloadsubsurface-adf6d1e22d06cebcc7dc2a8a379618d8eb2df655.tar.gz
Units should be lower case
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/models.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index b8909dadf..12e17c8e9 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -758,7 +758,7 @@ int TankInfoModel::rowCount(const QModelIndex& parent) const
TankInfoModel::TankInfoModel() : rows(-1)
{
- setHeaderDataStrings( QStringList() << tr("Description") << tr("Ml") << tr("Bar"));
+ setHeaderDataStrings( QStringList() << tr("Description") << tr("ml") << tr("bar"));
struct tank_info_t *info = tank_info;
for (info = tank_info; info->name; info++, rows++){
QString infoName(info->name);