Skip to content

Commit 7c4db43

Browse files
author
Daniel Marjamäki
committed
doxygen: fixed warning messages
1 parent 382e41d commit 7c4db43

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

gui/checkthread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class CheckThread : public QThread
6969
/**
7070
* @brief States for the check thread.
7171
* Whole purpose of these states is to allow stopping of the checking. When
72-
* stopping we say for the thread (Stopping) that "stop when current check
72+
* stopping we say for the thread (Stopping) that stop when current check
7373
* has been completed. Thread must be stopped cleanly, just terminating thread
7474
* likely causes unpredictable side-effedts.
7575
*/

gui/resultstree.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ class ResultsTree : public QTreeView
5555
* @param message error message
5656
* @param files list of files affected by the error
5757
* @param lines list of file line numers affected by the error
58+
* @param id error id
5859
*/
5960
void AddErrorItem(const QString &file,
6061
const QString &severity,
@@ -183,8 +184,8 @@ protected slots:
183184

184185

185186
/**
186-
* @brief Save all errors under spesified item
187-
*
187+
* @brief Save all errors under specified item
188+
* @param report Report that errors are saved to
188189
* @param item Item whose errors to save
189190
*/
190191
void SaveErrors(Report *report, QStandardItem *item);

gui/resultsview.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ResultsView : public QWidget
5050
* Refreshes the tree.
5151
*
5252
* @param type Type of error to show/hide
53-
* @param Should specified errors be shown (true) or hidden (false)
53+
* @param show Should specified errors be shown (true) or hidden (false)
5454
*/
5555
void ShowResults(ShowTypes type, bool show);
5656

@@ -74,6 +74,7 @@ class ResultsView : public QWidget
7474
* @param showFullPath Show full path of files in the tree
7575
* @param saveFullPath Save full path of files in reports
7676
* @param saveAllErrors Save all visible errors
77+
* @param showNoErrorsMessage Show "no errors"?
7778
*/
7879
void UpdateSettings(bool showFullPath,
7980
bool saveFullPath,
@@ -149,13 +150,14 @@ public slots:
149150
* @param message error message
150151
* @param files list of files affected by the error
151152
* @param lines list of file line numers affected by the error
153+
* @param id error id
152154
*/
153155
void Error(const QString &file,
154156
const QString &severity,
155157
const QString &message,
156158
const QStringList &files,
157159
const QVariantList &lines,
158-
const QString &error);
160+
const QString &id);
159161

160162
/**
161163
* @brief Collapse all results in the result list.

gui/threadresult.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ public slots:
9393
* @param message error message
9494
* @param files list of files affected by the error
9595
* @param lines list of file line numers affected by the error
96+
* @param id error id
9697
*/
9798
void Error(const QString &file,
9899
const QString &severity,

0 commit comments

Comments
 (0)