Hack around a translation issue

I cannot figure out how to get the hemisphere letters translated correctly
in qthelper.cpp. Short term hack for now - someone who understands how
this is supposed to work really needs to take a look.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-05-07 15:12:45 -07:00
parent 6763b93619
commit 0a6c16f35a
3 changed files with 36 additions and 24 deletions

View file

@ -1110,3 +1110,8 @@ void MainTab::updateGpsCoordinates(const struct dive *dive)
ui.coordinates->clear();
}
}
QString MainTab::trHemisphere(const char *orig)
{
return tr(orig);
}