diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-09 11:06:42 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-09 11:27:23 +0000 |
commit | cb958bb5e0e81d343c91c08a8513006a7bf1d913 (patch) | |
tree | 376b6bdfd1e4be0851f5eba9092588cfde451945 /starmath/inc | |
parent | f4fcec5f0802620192c31aad24db436ead1b2036 (diff) |
loplugin:constantparam in sot..svl
Change-Id: I08db2db3b90725c556e3ba062da5d62d98f6e882
Reviewed-on: https://gerrit.libreoffice.org/28769
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'starmath/inc')
-rw-r--r-- | starmath/inc/caret.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/starmath/inc/caret.hxx b/starmath/inc/caret.hxx index c1ef793a9242..e2c648643008 100644 --- a/starmath/inc/caret.hxx +++ b/starmath/inc/caret.hxx @@ -130,11 +130,10 @@ public: ~SmCaretPosGraph(); /** Add a caret position - * @remarks If left and/or right are set NULL, they will point back to the entry. + * @remarks If left is NULL, they will point back to the entry. */ SmCaretPosGraphEntry* Add(SmCaretPos pos, - SmCaretPosGraphEntry* left = nullptr, - SmCaretPosGraphEntry* right = nullptr); + SmCaretPosGraphEntry* left = nullptr); std::vector<std::unique_ptr<SmCaretPosGraphEntry>>::iterator begin() { |