diff options
author | Robert Loehning <robert.loehning@qt.io> | 2018-10-26 15:30:16 +0200 |
---|---|---|
committer | Robert Loehning <robert.loehning@qt.io> | 2018-11-29 11:01:29 +0000 |
commit | 82a1dc2d663d60faede6e0814b87eaab9868ff9f (patch) | |
tree | cef339c0fc12dedd5fa6a75b2c4bd622f4aec4a5 /src/plugins/cppcheck/cppcheckoptions.cpp | |
parent | ba4c43421126c02e34d5cf3ed25bb290c79e6343 (diff) | |
download | qt-creator-82a1dc2d663d60faede6e0814b87eaab9868ff9f.tar.gz |
Cppcheck: Use plural like in other strings
Change-Id: I41031253c1c30e867bd4506a1de82c3400eb0b8e
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Diffstat (limited to 'src/plugins/cppcheck/cppcheckoptions.cpp')
-rw-r--r-- | src/plugins/cppcheck/cppcheckoptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppcheckoptions.cpp b/src/plugins/cppcheck/cppcheckoptions.cpp index 1c8f0b2131..81cbe0616d 100644 --- a/src/plugins/cppcheck/cppcheckoptions.cpp +++ b/src/plugins/cppcheck/cppcheckoptions.cpp @@ -60,7 +60,7 @@ public: m_portability(new QCheckBox(tr("Portability"), this)), m_information(new QCheckBox(tr("Information"), this)), m_unusedFunction(new QCheckBox(tr("Unused functions"), this)), - m_missingInclude(new QCheckBox(tr("Missing include"), this)), + m_missingInclude(new QCheckBox(tr("Missing includes"), this)), m_inconclusive(new QCheckBox(tr("Inconclusive errors"), this)), m_forceDefines(new QCheckBox(tr("Check all define combinations"), this)), m_showOutput(new QCheckBox(tr("Show raw output"), this)), |