summaryrefslogtreecommitdiffstats
path: root/profile-widget/diveeventitem.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 /profile-widget/diveeventitem.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 'profile-widget/diveeventitem.cpp')
-rw-r--r--profile-widget/diveeventitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile-widget/diveeventitem.cpp b/profile-widget/diveeventitem.cpp
index e106a3c26..13ab3770b 100644
--- a/profile-widget/diveeventitem.cpp
+++ b/profile-widget/diveeventitem.cpp
@@ -168,7 +168,7 @@ void DiveEventItem::setupPixmap(struct gasmix *lastgasmix)
void DiveEventItem::setupToolTipString(struct gasmix *lastgasmix)
{
// we display the event on screen - so translate
- QString name = gettextFromC::instance()->tr(internalEvent->name);
+ QString name = gettextFromC::tr(internalEvent->name);
int value = internalEvent->value;
int type = internalEvent->type;
@@ -194,7 +194,7 @@ void DiveEventItem::setupToolTipString(struct gasmix *lastgasmix)
}
*lastgasmix = *mix;
} else if (same_string(internalEvent->name, "modechange")) {
- name += QString(": %1").arg(gettextFromC::instance()->tr(divemode_text_ui[internalEvent->value]));
+ name += QString(": %1").arg(gettextFromC::tr(divemode_text_ui[internalEvent->value]));
} else if (value) {
if (type == SAMPLE_EVENT_PO2 && same_string(internalEvent->name, "SP change")) {
name += QString(": %1bar").arg((double)value / 1000, 0, 'f', 1);