Fixed several doxygen-comments in lib and gui

This commit is contained in:
PKEuS 2012-10-19 11:29:05 +02:00
parent 60271a5819
commit e44e6837c2
3 changed files with 8 additions and 8 deletions

View File

@ -108,13 +108,13 @@ public:
/**
* @brief Set list of paths to check.
* @param defines List of paths.
* @param paths List of paths.
*/
void SetCheckPaths(const QStringList &paths);
/**
* @brief Set list of paths to exclude from the check.
* @param defines List of paths.
* @param paths List of paths.
*/
void SetExcludedPaths(const QStringList &paths);

View File

@ -155,7 +155,7 @@ signals:
/**
* @brief Signal for selection change in result tree.
*
* @param index Model index to specify new selected item.
* @param current Model index to specify new selected item.
*/
void SelectionChanged(const QModelIndex &current);
@ -201,8 +201,8 @@ protected slots:
/**
* @brief Slot for selection change in the results tree.
*
* @param index Model index to specify new selected item.
* @param index Model index to specify previous selected item.
* @param current Model index to specify new selected item.
* @param previous Model index to specify previous selected item.
*/
virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
@ -293,7 +293,7 @@ protected:
/**
* @brief Convert Severity to translated string for GUI.
* @param type Severity to convert
* @param severity Severity to convert
* @return Severity as translated string
*/
QString SeverityToTranslatedString(Severity::SeverityType severity);
@ -324,7 +324,7 @@ protected:
* @brief Create new line number item.
*
* Line number item has right align and text set as tooltip.
* @param name name for the item
* @param linenumber name for the item
* @return new QStandardItem
*/
QStandardItem *CreateLineNumberItem(const QString &linenumber);

View File

@ -393,7 +393,7 @@ public:
/**
* Associate this token with given scope
* @param scope Scope to be associated
* @param s Scope to be associated
*/
void scope(Scope* s) {
_scope = s;