https://issues.apache.org/ooo/show_bug.cgi?id=122576
--- Comment #8 from Andre <[email protected]> --- I really don't want to sound too negative, but the management of the window listeners really is a mess. And that is not the only bad thing. I can only hope that nobody uses the layout manager to create a docking window. In method LayoutManager::createElement(), the section for handling element type "dockingwindow" not only registers itself as window listener at the newly created window (via impl_addWindowListeners()), it also calls m_pPanelManager->addDockingWindow( aName, xUIElement ); The problem with this line is that m_pPanelManger is a private member that is never initialized to a non-null value (and LayoutManager has no friends which would do that for it). And really, whenever createElement() is called, m_pPanelManger is NULL. It is so good, that the "dockingwindow" section is never activated. -- You are receiving this mail because: You are on the CC list for the bug. You are watching all bug changes.
