From e44e6837c2d66bc25df8b548fdcbe759ddd29891 Mon Sep 17 00:00:00 2001 From: PKEuS Date: Fri, 19 Oct 2012 11:29:05 +0200 Subject: [PATCH] Fixed several doxygen-comments in lib and gui --- gui/projectfile.h | 4 ++-- gui/resultstree.h | 10 +++++----- lib/token.h | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gui/projectfile.h b/gui/projectfile.h index 25d28c92e..ca2be76f2 100644 --- a/gui/projectfile.h +++ b/gui/projectfile.h @@ -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); diff --git a/gui/resultstree.h b/gui/resultstree.h index 6950cbf6b..680fdbd8a 100644 --- a/gui/resultstree.h +++ b/gui/resultstree.h @@ -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); diff --git a/lib/token.h b/lib/token.h index 220e946aa..f60361d2f 100644 --- a/lib/token.h +++ b/lib/token.h @@ -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;