diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2018-06-17 17:55:47 +0200 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2018-06-18 07:42:39 +0200 |
commit | c953aadcf82ee050102e228bf08bcff76886caaa (patch) | |
tree | 8587b76c9f1c2d81347c9afb5236a5f714ba8334 /qt-models/tankinfomodel.cpp | |
parent | 88e6ba2f61cb1cf92787d8bdd2be499744ac546d (diff) | |
download | subsurface-c953aadcf82ee050102e228bf08bcff76886caaa.tar.gz |
Change from gettextFromC::instance()->tr() to gettextFromC::tr();
Code cleanup.
Suggested-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'qt-models/tankinfomodel.cpp')
-rw-r--r-- | qt-models/tankinfomodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/tankinfomodel.cpp b/qt-models/tankinfomodel.cpp index ee970e638..49e42830c 100644 --- a/qt-models/tankinfomodel.cpp +++ b/qt-models/tankinfomodel.cpp @@ -92,7 +92,7 @@ TankInfoModel::TankInfoModel() : rows(-1) 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 = gettextFromC::instance()->tr(info->name); + QString infoName = gettextFromC::tr(info->name); if (infoName.count() > biggerEntry.count()) biggerEntry = infoName; } |