sfx2/source/control/dispatch.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d57861bc1526122024a8f8d9051582ca22e1d7be
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Fri Sep 1 13:34:53 2023 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Fri Sep 1 18:47:29 2023 +0200

    SAL_WARN->SAL_INFO in SfxDispatcher
    
    nobody cares if child window slot is missing
    
    Change-Id: I24978daa9a2770e8f0bd44b5b816f94b8d01da0d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156407
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index f7ff0b75e4ec..af57a5e3ab2f 100644
--- a/sfx2/source/control/dispatch.cxx
+++ b/sfx2/source/control/dispatch.cxx
@@ -1208,7 +1208,7 @@ void SfxDispatcher::Update_Impl_( bool bUIActive, bool 
bIsMDIApp, bool bIsIPOwne
         {
             sal_uInt32 nId = pIFace->GetChildWindowId(nNo);
             const SfxSlot *pSlot = pSlotPool->GetSlot( 
static_cast<sal_uInt16>(nId) );
-            SAL_WARN_IF( !pSlot, "sfx.control", "Childwindow slot missing: " 
<< nId );
+            SAL_INFO_IF( !pSlot, "sfx.control", "Childwindow slot missing: " 
<< nId );
             if ( bReadOnlyShell )
             {
                 // only show ChildWindows if their slot is allowed for 
readonly documents

Reply via email to