summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_i18n_exclusion/apps/app1/subdir2/excluded4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/cmake/linguist/test_i18n_exclusion/apps/app1/subdir2/excluded4.cpp')
-rw-r--r--tests/auto/cmake/linguist/test_i18n_exclusion/apps/app1/subdir2/excluded4.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/cmake/linguist/test_i18n_exclusion/apps/app1/subdir2/excluded4.cpp b/tests/auto/cmake/linguist/test_i18n_exclusion/apps/app1/subdir2/excluded4.cpp
new file mode 100644
index 000000000..f6ce89cb4
--- /dev/null
+++ b/tests/auto/cmake/linguist/test_i18n_exclusion/apps/app1/subdir2/excluded4.cpp
@@ -0,0 +1,14 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QCoreApplication>
+
+class WossName
+{
+ Q_DECLARE_TR_FUNCTIONS(WossName)
+public:
+ static QString greeting()
+ {
+ return tr("excluded4");
+ }
+};