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

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


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

New commits:
commit 4ff272d90b62b591e344e6c4948495fee5208deb
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:41:58 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/67104
    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 406f89d4f7ac..c8b2e76af427 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