diff options
author | Eike Ziller <eike.ziller@qt.io> | 2021-03-19 10:46:11 +0100 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2021-03-22 15:00:37 +0000 |
commit | e9bf841dc921a87856b31c047378d285b2ad8921 (patch) | |
tree | 08d671f07a2a1949ade347e4ae5a70e0e9b12600 /src/plugins/cpptools/cppfindreferences.cpp | |
parent | 49a2e143578a0a6ebe06f12256edd75cf203b2ec (diff) | |
download | qt-creator-e9bf841dc921a87856b31c047378d285b2ad8921.tar.gz |
Fix lupdate issues
Some wrong tr calls / missing tr functions.
Some places where we need to bring lupdate to the right track with
regard to namespace resolution.
Change-Id: Idf552054a34e24d9671db68c816bf37f4d403dbc
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cppfindreferences.cpp')
-rw-r--r-- | src/plugins/cpptools/cppfindreferences.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/cpptools/cppfindreferences.cpp b/src/plugins/cpptools/cppfindreferences.cpp index d0fe1c75bd..c0860c073e 100644 --- a/src/plugins/cpptools/cppfindreferences.cpp +++ b/src/plugins/cpptools/cppfindreferences.cpp @@ -177,13 +177,13 @@ class Filter : public Core::SearchResultFilter const auto widget = new QWidget; const auto layout = new QVBoxLayout(widget); layout->setContentsMargins(0, 0, 0, 0); - const auto readsCheckBox = new QCheckBox(tr("Reads")); + const auto readsCheckBox = new QCheckBox(CppFindReferences::tr("Reads")); readsCheckBox->setChecked(m_showReads); - const auto writesCheckBox = new QCheckBox(tr("Writes")); + const auto writesCheckBox = new QCheckBox(CppFindReferences::tr("Writes")); writesCheckBox->setChecked(m_showWrites); - const auto declsCheckBox = new QCheckBox(tr("Declarations")); + const auto declsCheckBox = new QCheckBox(CppFindReferences::tr("Declarations")); declsCheckBox->setChecked(m_showDecls); - const auto otherCheckBox = new QCheckBox(tr("Other")); + const auto otherCheckBox = new QCheckBox(CppFindReferences::tr("Other")); otherCheckBox->setChecked(m_showOther); layout->addWidget(readsCheckBox); layout->addWidget(writesCheckBox); |