https://bugs.documentfoundation.org/show_bug.cgi?id=156648
Bug ID: 156648
Summary: Crash in: (anonymous
namespace)::XFrameImpl::implts_sendFrameActionEvent(co
m::sun::star::frame::FrameAction const&)
Product: LibreOffice
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
Severity: normal
Priority: medium
Component: Calc
Assignee: [email protected]
Reporter: [email protected]
This bug was filed from the crash reporting server and is
br-bb547c81-13c4-421b-8bac-6f2a342b9944.
=========================================
REM ***** BASIC *****
Option Explicit
Global gFrameContextListener As Object
Global gListenedFrame As Object
Sub StartFrameActionListener
gFrameContextListener = createUnoListener("FRAME_CONTEXT_",
"com.sun.star.frame.XFrameActionListener.CONTEXT_CHANGED")
gListenedFrame = ThisComponent.CurrentController.Frame '.getController()
gListenedFrame.addFrameActionListener( gFrameContextListener)
End Sub
Sub StopFrameActionListener
gListenedFrame.removeFrameActionListener( gFrameContextListener)
End Sub
Sub FRAME_CONTEXT_disposing( oEvt)
MsgBox "Exécution de FRAME_CONTEXT_disposing( oEvt)"
End Sub
Sub FRAME_CONTEXT_contextChanged( oEvt)
MsgBox "Exécution de FRAME_CONTEXT_contextChanged( oEvt)"
End Sub
After running StartFrameActionListener above, LO crashes as soon as I focus on
the document frame. That's all !
Thank you
--
You are receiving this mail because:
You are the assignee for the bug.