[Libreoffice-commits] core.git: forms/source

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Wed Dec 30 06:44:35 UTC 2020


 forms/source/component/ListBox.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3b352e846e7244c34182fcc925e6653431880ac9
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Tue Dec 29 11:54:16 2020 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Dec 30 07:43:53 2020 +0100

    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 at redhat.com>

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;
             }


More information about the Libreoffice-commits mailing list