framework/source/uielement/toolbarmanager.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad0354c5c5964eefa9241653581c1860d1042644
Author:     Maxim Monastirsky <momonas...@gmail.com>
AuthorDate: Tue Aug 9 21:26:55 2022 +0300
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Wed Aug 10 13:17:17 2022 +0200

    Missing colon in toolbar help ids
    
    Regression of 5200a73627d13e2997f81b53f61e143e77e328ee
    ("use more string_view in various").
    
    Change-Id: I402eb6c03dcfa661c79c5469cfca3c86ac528f60
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138066
    Tested-by: Jenkins
    Reviewed-by: Maxim Monastirsky <momonas...@gmail.com>
    (cherry picked from commit f4c922f91e717728376dca943008a6dd56387c71)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138023
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>
    Tested-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/framework/source/uielement/toolbarmanager.cxx 
b/framework/source/uielement/toolbarmanager.cxx
index 4d56884ffbb2..3cce6eef4509 100644
--- a/framework/source/uielement/toolbarmanager.cxx
+++ b/framework/source/uielement/toolbarmanager.cxx
@@ -633,7 +633,7 @@ void ToolBarManager::Init()
     sal_Int32 idx = m_aResourceName.lastIndexOf('/');
     idx++; // will become 0 if '/' not found: use full string
     std::u16string_view aToolbarName = m_aResourceName.subView( idx );
-    OString aHelpIdAsString = ".HelpId" + OUStringToOString( aToolbarName, 
RTL_TEXTENCODING_UTF8 );
+    OString aHelpIdAsString = ".HelpId:" + OUStringToOString( aToolbarName, 
RTL_TEXTENCODING_UTF8 );
     m_pImpl->SetHelpId( aHelpIdAsString );
 
     m_aAsyncUpdateControllersTimer.SetTimeout( 50 );

Reply via email to