From a6677523b8439da5098c396b27b737b0165ab4de Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Thu, 23 Apr 2020 19:16:17 +0300 Subject: [PATCH] Clang warnings. --- src/app/puzzle/puzzlemainwindow.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/puzzle/puzzlemainwindow.h b/src/app/puzzle/puzzlemainwindow.h index a2241ef7f..7b2456a10 100644 --- a/src/app/puzzle/puzzlemainwindow.h +++ b/src/app/puzzle/puzzlemainwindow.h @@ -127,16 +127,16 @@ private: /** * @brief SetDoubleSpinBoxValue sets the given spinbox to the given value. * the signals are blocked before changing the value and unblocked after - * @param spinbox - * @param value + * @param spinBox pointer to spinbox + * @param value spinbox value */ void SetDoubleSpinBoxValue(QDoubleSpinBox *spinBox, qreal value); /** * @brief SetCheckBoxValue sets the given checkbox to the given value. * the signals are blocked before changing the value and unblocked after - * @param checkbox - * @param value + * @param checkbox pointer to checkbox + * @param value checkbox value */ void SetCheckBoxValue(QCheckBox *checkbox, bool value);