subsurface/core/gettextfromc.cpp
Berthold Stoeger 6bdb8537e6 build: remove extern "C" linkage
No more C source files, no more necessity to use C-linkage.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2024-06-10 13:05:57 +02:00

18 lines
434 B
C++

// SPDX-License-Identifier: GPL-2.0
#include "gettextfromc.h"
#include <QHash>
#include <QMutex>
static QHash<QByteArray, QByteArray> translationCache;
static QMutex lock;
const char *trGettext(const char *text)
{
QByteArray key(text);
QMutexLocker l(&lock);
auto it = translationCache.find(key);
if (it == translationCache.end())
it = translationCache.insert(key, gettextFromC::tr(text).toUtf8());
return it->constData();
}