From 0cae823c5dda07d5fd791d38541e828822aebe87 Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Mon, 21 Aug 2017 21:13:01 +0200 Subject: [PATCH] Fix doxygen comments --- cli/cppcheckexecutor.h | 2 +- gui/mainwindow.h | 2 +- lib/cppcheck.h | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/cppcheckexecutor.h b/cli/cppcheckexecutor.h index 79a1aa25c..269e53afb 100644 --- a/cli/cppcheckexecutor.h +++ b/cli/cppcheckexecutor.h @@ -129,7 +129,7 @@ protected: * Helper function to supply settings. This can be used for testing. * @param settings Reference to an Settings instance */ - void setSettings(const Settings &); + void setSettings(const Settings &settings); private: diff --git a/gui/mainwindow.h b/gui/mainwindow.h index 159a982e8..7b3433e68 100644 --- a/gui/mainwindow.h +++ b/gui/mainwindow.h @@ -233,7 +233,7 @@ private: /** * @brief Analyze the project. - * @param project Pointer to the project to analyze. + * @param projectFile Pointer to the project to analyze. */ void analyzeProject(const ProjectFile *projectFile); diff --git a/lib/cppcheck.h b/lib/cppcheck.h index 53007674c..81d9bb8b0 100644 --- a/lib/cppcheck.h +++ b/lib/cppcheck.h @@ -158,19 +158,19 @@ private: /** * @brief Check raw tokens - * @param tokenizer + * @param tokenizer tokenizer instance */ void checkRawTokens(const Tokenizer &tokenizer); /** * @brief Check normal tokens - * @param tokenizer + * @param tokenizer tokenizer instance */ void checkNormalTokens(const Tokenizer &tokenizer); /** * @brief Check simplified tokens - * @param tokenizer + * @param tokenizer tokenizer instance */ void checkSimplifiedTokens(const Tokenizer &tokenizer);