diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-01 13:34:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-01 18:47:29 +0200 |
commit | d57861bc1526122024a8f8d9051582ca22e1d7be (patch) | |
tree | 1cafea49b390f249b06ef09a5a0b63a4372985be /sfx2 | |
parent | 7848c24fe7afbe1bece2499158aa2467b1f76f27 (diff) |
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.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/dispatch.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |