summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-12-29 11:54:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-12-30 07:43:53 +0100
commit3b352e846e7244c34182fcc925e6653431880ac9 (patch)
tree843f0197c47f075f5909d6907abedb2cac7d32a7 /forms
parent369c3f202ff7d72dbdda1ff38d8232d86ccfc5af (diff)
AppendRowSetValueString is used on a ValueList
(aka a vector<ORowSetValue>, so make it work on ORowSetValue. (This will avoid a bogus warning when extending loplugin:stringviewparam to operator +=.) Change-Id: I2c4bbb2f6b4c920f26038053f9c5d4607e8c3378 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108454 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ListBox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index f33312952e44..42dc08aee90d 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -95,7 +95,7 @@ namespace frm
{
}
- void operator()( const OUString& _append )
+ void operator()( const ORowSetValue& _append )
{
m_string += _append;
}