File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments