From 9b1a1233f913113fe9fabc32ebcef806549aaedc Mon Sep 17 00:00:00 2001 From: "PANIK\\chris" Date: Mon, 12 Jan 2026 08:04:41 +0100 Subject: [PATCH] Reduce Warnigns. --- bcvalue.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bcvalue.h b/bcvalue.h index fbc3fd7..1f97c8c 100644 --- a/bcvalue.h +++ b/bcvalue.h @@ -123,7 +123,9 @@ public: void setRawValue(uint32_t newRawValue) const { rawValue = newRawValue; } void setFromDouble( double value ) - {} + { + Q_UNUSED(value) + } QString getUnitLabel() const { return unitLabel; } void setUnitLabel(const QString &newUnitLabel) { unitLabel = newUnitLabel; }