[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - cui/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Jan 30 12:42:40 UTC 2019


 cui/source/customize/cfg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1bb9126567becd881453da342315f139b4a564c9
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Wed Jan 30 09:12:35 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Jan 30 13:42:13 2019 +0100

    tdf#123036: fix assert in cfg.cxx (cui)
    
    See https://bugs.documentfoundation.org/show_bug.cgi?id=123036#c3
    
    Regression from https://cgit.freedesktop.org/libreoffice/core/commit/?id=52ccd8fabeea247da7077798b50a6db1da31a2eb
    
    Change-Id: I1c24a6c59bda7ce06ed93c31a21d9bc1c8abe2f5
    Reviewed-on: https://gerrit.libreoffice.org/67107
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index bfddfef5b6ec..4d4a8ef2ddc0 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -1934,7 +1934,7 @@ SvxMainMenuOrganizerDialog::SvxMainMenuOrganizerDialog(
 
         m_sNewMenuEntryId = OUString::number(reinterpret_cast<sal_uInt64>(pNewEntryData));
         m_xMenuListBox->append(m_sNewMenuEntryId,
-                               SvxConfigPageHelper::stripHotKey(pNewEntryData->GetName()), "");
+                               SvxConfigPageHelper::stripHotKey(pNewEntryData->GetName()));
         m_xMenuListBox->select(m_xMenuListBox->n_children() - 1);
 
         if (mpEntries)


More information about the Libreoffice-commits mailing list