summaryrefslogtreecommitdiffstats
path: root/qt-models/weightsysteminfomodel.cpp
diff options
context:
space:
mode:
authorGravatar Stefan Fuchs <sfuchs@gmx.de>2018-06-17 17:55:47 +0200
committerGravatar bstoeger <32835590+bstoeger@users.noreply.github.com>2018-06-18 07:42:39 +0200
commitc953aadcf82ee050102e228bf08bcff76886caaa (patch)
tree8587b76c9f1c2d81347c9afb5236a5f714ba8334 /qt-models/weightsysteminfomodel.cpp
parent88e6ba2f61cb1cf92787d8bdd2be499744ac546d (diff)
downloadsubsurface-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/weightsysteminfomodel.cpp')
-rw-r--r--qt-models/weightsysteminfomodel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-models/weightsysteminfomodel.cpp b/qt-models/weightsysteminfomodel.cpp
index 14d268bcb..f843c8ef0 100644
--- a/qt-models/weightsysteminfomodel.cpp
+++ b/qt-models/weightsysteminfomodel.cpp
@@ -58,7 +58,7 @@ QVariant WSInfoModel::data(const QModelIndex &index, int role) const
ret = gr;
break;
case DESCRIPTION:
- ret = gettextFromC::instance()->tr(info->name);
+ ret = gettextFromC::tr(info->name);
break;
}
break;
@@ -81,7 +81,7 @@ WSInfoModel::WSInfoModel() : rows(-1)
setHeaderDataStrings(QStringList() << tr("Description") << tr("kg"));
struct ws_info_t *info = ws_info;
for (info = ws_info; info->name; info++, rows++) {
- QString wsInfoName = gettextFromC::instance()->tr(info->name);
+ QString wsInfoName = gettextFromC::tr(info->name);
if (wsInfoName.count() > biggerEntry.count())
biggerEntry = wsInfoName;
}
@@ -99,7 +99,7 @@ void WSInfoModel::updateInfo()
endRemoveRows();
rows = -1;
for (info = ws_info; info->name; info++, rows++) {
- QString wsInfoName = gettextFromC::instance()->tr(info->name);
+ QString wsInfoName = gettextFromC::tr(info->name);
if (wsInfoName.count() > biggerEntry.count())
biggerEntry = wsInfoName;
}