mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
879cb73b8b
There were a handfull instances of the kind 1) gettextFromC::instance()->tr(...) 2) gettextFromC::instance()->trGettext(...) 1) is pointless, as tr is a static function. All instances of 2) were likewise pointless, because trGettext() returns a C-string, which was then immediately converted to a QString. Thus, replace both constructs by gettextFromC::tr(...). After this change there was only one user of gettextFromC::instance() left, viz. the C-interface funtion trGettext(). Therefore, remove gettextFromC::instance() and do all the caching / translating directly in the global trGettext(). Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
13 lines
253 B
C++
13 lines
253 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef GETTEXTFROMC_H
|
|
#define GETTEXTFROMC_H
|
|
|
|
#include <QCoreApplication>
|
|
|
|
extern "C" const char *trGettext(const char *text);
|
|
|
|
class gettextFromC {
|
|
Q_DECLARE_TR_FUNCTIONS(gettextFromC)
|
|
};
|
|
|
|
#endif // GETTEXTFROMC_H
|