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/models.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/models.cpp')
-rw-r--r-- | qt-models/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/models.cpp b/qt-models/models.cpp index 87dfe0cd5..5fa0c7c79 100644 --- a/qt-models/models.cpp +++ b/qt-models/models.cpp @@ -84,7 +84,7 @@ void DiveTypeSelectionModel::repopulate() { QStringList modes = QStringList(); for (int i = 0; i < FREEDIVE; i++) - modes.append(gettextFromC::instance()->tr(divemode_text_ui[i])); + modes.append(gettextFromC::tr(divemode_text_ui[i])); setStringList(modes); } |