From 88e6ba2f61cb1cf92787d8bdd2be499744ac546d Mon Sep 17 00:00:00 2001 From: Stefan Fuchs Date: Sun, 17 Jun 2018 08:48:54 +0200 Subject: Use correct "tr" call for translating dive mode names Correctly use gettextFromC::instance()->tr(); instead of a simple tr(); to translate the dive mode names. This goes on top of 0bc9edf855caf95e2d58ccaf704ceeda079e06f1 and finally makes the whole thing work. Signed-off-by: Stefan Fuchs --- desktop-widgets/tab-widgets/maintab.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'desktop-widgets/tab-widgets') diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp index fcd116a81..95fbb23c0 100644 --- a/desktop-widgets/tab-widgets/maintab.cpp +++ b/desktop-widgets/tab-widgets/maintab.cpp @@ -24,6 +24,7 @@ #include "qt-models/filtermodels.h" #include "core/divesite.h" #include "core/subsurface-string.h" +#include "core/gettextfromc.h" #include "desktop-widgets/locationinformation.h" #include "TabDiveExtraInfo.h" @@ -111,7 +112,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), // This needs to be the same order as enum dive_comp_type in dive.h! QStringList types = QStringList(); for (int i = 0; i < NUM_DIVEMODE; i++) - types.append(QString(tr(divemode_text_ui[i]))); + types.append(gettextFromC::instance()->tr(divemode_text_ui[i])); ui.DiveType->insertItems(0, types); connect(ui.DiveType, SIGNAL(currentIndexChanged(int)), this, SLOT(divetype_Changed(int))); -- cgit v1.2.3-70-g09d2