summaryrefslogtreecommitdiffstats
path: root/tests/auto/linguist/lupdate/testdata/good/codecfortr2/main.cpp
blob: 91af16520c3620f78a876d6ac6f67dda1e544980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <QtCore>

class FooBar : QObject
{
    Q_OBJECT

public:
    void doFoo()
    {
        tr("random ascii only");
        tr("this contains an umlaut ü &uuml;");
        trUtf8("random ascii only in utf8");
        trUtf8("umlaut \xfc &uuml; in utf8");
    }
};

int main(int argc, char **argv)
{
    return 0;
}