https://bugs.documentfoundation.org/show_bug.cgi?id=114788

--- Comment #11 from Julien Nabet <serval2...@yahoo.fr> ---
Thank you Xisco, I think it's due to:
https://cgit.freedesktop.org/libreoffice/core/diff/svx/source/form/filtnav.cxx?id=85f93697defd9a812a0cda0bc4e9364e28c0339e

@@ -1193,7 +1193,7 @@ bool FmFilterNavigator::EditingEntry( SvTreeListEntry*
pEntry, Selection& rSelec
     if (!SvTreeListBox::EditingEntry( pEntry, rSelection ))
         return false;

-    return pEntry &&
static_cast<FmFilterData*>(pEntry->GetUserData())->ISA(FmFilterItem);
+    return pEntry && dynamic_cast<const
FmFilterItem*>(static_cast<FmFilterData*>(pEntry->GetUserData())) == nullptr;

the others ->ISA have been converted to != nullptr

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to