Fixed several doxygen-comments in lib and gui
This commit is contained in:
parent
60271a5819
commit
e44e6837c2
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 ¤t);
|
||||
|
||||
|
@ -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 ¤t, 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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue