https://issues.apache.org/ooo/show_bug.cgi?id=122047
--- Comment #13 from Andre <[email protected]> --- With Olivers preparation and help I have found the root cause for the missing context notifications. Context notifications are done via the sfx2::sidebar::IContextChangeReceiver interface. On a context change the SidebarPanelBase class attempts to dynamic_cast the panel object to IContextChangeReceiver. This cast fails for a few compilers because they provide vtable information only when there is a virtual destructor. Up to now IContextChangeReceiver had only one abstract virtual function and no destructor. Adding the virtual destructor should fix this problem. -- You are receiving this mail because: You are on the CC list for the bug.
