summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-09 22:56:54 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-11 01:01:13 +0100
commit8c01036aab57a59a9921d4c9eae0f113004aab21 (patch)
tree8617ee1bd86c73cd08875267dbd8099a45bbf329
parent1b29e4a6e8fb9a27a96bdfadb69b12cc2436db6e (diff)
downloadsink-8c01036aab57a59a9921d4c9eae0f113004aab21.tar.gz
sink-8c01036aab57a59a9921d4c9eae0f113004aab21.zip
more accurate descriptions
-rw-r--r--tests/hawd/modules/check.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hawd/modules/check.cpp b/tests/hawd/modules/check.cpp
index e334fb8..be7df9f 100644
--- a/tests/hawd/modules/check.cpp
+++ b/tests/hawd/modules/check.cpp
@@ -33,6 +33,7 @@ CheckAll::CheckAll()
33 : Module() 33 : Module()
34{ 34{
35 setSyntax(Syntax("checkall", &CheckAll::check)); 35 setSyntax(Syntax("checkall", &CheckAll::check));
36 setDescription(QObject::tr("Checks all dataset descriptions for validity and prints out any errors it finds"));
36} 37}
37 38
38bool CheckAll::check(const QStringList &commands, State &state) 39bool CheckAll::check(const QStringList &commands, State &state)
@@ -52,7 +53,7 @@ Check::Check()
52 Syntax top("check", &Check::check); 53 Syntax top("check", &Check::check);
53 setSyntax(top); 54 setSyntax(top);
54 55
55 setDescription(QObject::tr("Checks a dataset description for validity and prints out any errors it finds")); 56 setDescription(QObject::tr("Checks one or more dataset descriptions for validity and prints out any errors it finds"));
56} 57}
57 58
58bool Check::check(const QStringList &commands, State &state) 59bool Check::check(const QStringList &commands, State &state)