From: Jean-Marc Lasgouttes Date: Thu, 12 Sep 2024 16:28:26 +0000 (+0200) Subject: Make docstring parameters const references X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=7a99ef7fbbe5760e7d70e8ef6b446aebb0af04e2;p=lyx.git Make docstring parameters const references Spotted by Coverity scan. --- 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.