From 7a99ef7fbbe5760e7d70e8ef6b446aebb0af04e2 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 12 Sep 2024 18:28:26 +0200 Subject: [PATCH] Make docstring parameters const references Spotted by Coverity scan. --- src/insets/InsetLabel.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/insets/InsetLabel.h b/src/insets/InsetLabel.h index c2768af417..b4b3cb46f3 100644 --- a/src/insets/InsetLabel.h +++ b/src/insets/InsetLabel.h @@ -32,11 +32,11 @@ public: /// docstring const & formattedCounter() const { return formatted_counter_; } /// - void setCounterValue(docstring cv) { counter_value_ = cv; } + void setCounterValue(docstring const & cv) { counter_value_ = cv; } /// - void setPrettyCounter(docstring pc) { pretty_counter_ = pc; } + void setPrettyCounter(docstring const & pc) { pretty_counter_ = pc; } /// - void setFormattedCounter(docstring fc) { formatted_counter_ = fc; } + void setFormattedCounter(docstring const & fc) { formatted_counter_ = fc; } /// int rowFlags() const override { return CanBreakBefore | CanBreakAfter; } /// Updates only the label string, doesn't handle undo nor references. -- 2.39.5