diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-04-05 03:23:38 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-04-05 03:23:52 +0200 |
commit | c0165f8b48852a1aca782d606ba4f1ea48eee6ba (patch) | |
tree | 433441689808ca741889b078407bc49fade746de /tracker-test/test.h | |
parent | eb32a2ac02c6d1adcfeb0a1a5522f8aaea442489 (diff) |
modules: now use i18n
Diffstat (limited to 'tracker-test/test.h')
-rw-r--r-- | tracker-test/test.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tracker-test/test.h b/tracker-test/test.h index c7f19698..3d5e92bd 100644 --- a/tracker-test/test.h +++ b/tracker-test/test.h @@ -36,8 +36,9 @@ private slots: class test_metadata : public Metadata { -public: - QString name() { return _("Testing - sine wave"); } + Q_OBJECT + + QString name() { return tr("Testing - sine wave"); } QIcon icon() { return QIcon(":/images/opentrack.png"); } }; |