doxygen: fixed warning messages

This commit is contained in:
Daniel Marjamäki 2010-03-14 18:18:17 +01:00
parent 382e41d92a
commit 7c4db433ec
4 changed files with 9 additions and 5 deletions

View File

@ -69,7 +69,7 @@ protected:
/**
* @brief States for the check thread.
* Whole purpose of these states is to allow stopping of the checking. When
* stopping we say for the thread (Stopping) that "stop when current check
* stopping we say for the thread (Stopping) that stop when current check
* has been completed. Thread must be stopped cleanly, just terminating thread
* likely causes unpredictable side-effedts.
*/

View File

@ -55,6 +55,7 @@ public:
* @param message error message
* @param files list of files affected by the error
* @param lines list of file line numers affected by the error
* @param id error id
*/
void AddErrorItem(const QString &file,
const QString &severity,
@ -183,8 +184,8 @@ protected:
/**
* @brief Save all errors under spesified item
*
* @brief Save all errors under specified item
* @param report Report that errors are saved to
* @param item Item whose errors to save
*/
void SaveErrors(Report *report, QStandardItem *item);

View File

@ -50,7 +50,7 @@ public:
* Refreshes the tree.
*
* @param type Type of error to show/hide
* @param Should specified errors be shown (true) or hidden (false)
* @param show Should specified errors be shown (true) or hidden (false)
*/
void ShowResults(ShowTypes type, bool show);
@ -74,6 +74,7 @@ public:
* @param showFullPath Show full path of files in the tree
* @param saveFullPath Save full path of files in reports
* @param saveAllErrors Save all visible errors
* @param showNoErrorsMessage Show "no errors"?
*/
void UpdateSettings(bool showFullPath,
bool saveFullPath,
@ -149,13 +150,14 @@ public slots:
* @param message error message
* @param files list of files affected by the error
* @param lines list of file line numers affected by the error
* @param id error id
*/
void Error(const QString &file,
const QString &severity,
const QString &message,
const QStringList &files,
const QVariantList &lines,
const QString &error);
const QString &id);
/**
* @brief Collapse all results in the result list.

View File

@ -93,6 +93,7 @@ signals:
* @param message error message
* @param files list of files affected by the error
* @param lines list of file line numers affected by the error
* @param id error id
*/
void Error(const QString &file,
const QString &severity,