From c5e8e51ecf4a4e9723c480390aaf080eed806017 Mon Sep 17 00:00:00 2001 From: Blake-Madden <66873089+Blake-Madden@users.noreply.github.com> Date: Sat, 15 Jun 2024 13:55:42 -0400 Subject: [PATCH] Handle static calls to QApplication::tr and QApplication::trUtf8 also #4 --- src/i18n_review.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n_review.cpp b/src/i18n_review.cpp index 646d84b..fee5d00 100644 --- a/src/i18n_review.cpp +++ b/src/i18n_review.cpp @@ -439,7 +439,7 @@ namespace i18n_check // Qt (note that NOOP functions actually do load something for translation, just not // in-place) L"tr", L"trUtf8", L"translate", L"QT_TR_NOOP", L"QT_TRANSLATE_NOOP", - L"QApplication::translate", + L"QApplication::translate", L"QApplication::tr", L"QApplication::trUtf8", // KDE (ki18n) L"i18n", L"i18np", L"i18ncp", L"i18nc", L"xi18n", L"xi18nc" };