Bug 156648 - Crash in: (anonymous namespace)::XFrameImpl::implts_sendFrameActionEvent(com::sun::star::frame::FrameAction const&)
Summary: Crash in: (anonymous namespace)::XFrameImpl::implts_sendFrameActionEvent(com:...
Status: UNCONFIRMED
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Calc (show other bugs)
Version:
(earliest affected)
7.5.5.2 release
Hardware: x86-64 (AMD64) Linux (All)
: medium normal
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-08-07 07:45 UTC by guillaume.kobena
Modified: 2023-08-07 07:47 UTC (History)
0 users

See Also:
Crash report or crash signature: ["(anonymous namespace)::XFrameImpl::implts_sendFrameActionEvent(com::sun::star::frame::FrameAction const&)"]


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description guillaume.kobena 2023-08-07 07:45:26 UTC
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