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

--- Comment #5 from Wolfgang Jäger <[email protected]> ---
(In reply to Buovjaga from comment #4)
> (In reply to Wolfgang Jäger from comment #2)
> > REM While the Sub is still running: Statement-position-arrow visible and
> > pointing to 'End Sub'.
> 
> I don't understand what this means.

There was given a short Sub intended to run for a text document in LibO:
Sub testThis()
 dtField = ThisComponent.createInstance("com.sun.star.text.textfield.DateTime")
 REM No error
 REM Try to inspect the new instance: Full crash.
End Sub

Execute the single statement as a step (F8 or respective Click) in the IDE.
The little arrow left of the line numbers pointing to the statement to be
executed next now points to 'End Sub'.
This indicates that the Sub not yet was exited.
The objects shown in the Watch panel are still "living", and the object dtField
listed there (in the only used line likely) has a little framed "+" in front
meaning "Click me to see details!".
Try that, and you should get the crash.
I specialized the report to objects of type textfield.DateTime. 
This doesn't mean the issuue won't occur with different objects newly created
by 
.createInstance()
and supporting com.sun.star.text.TextContent, but not yet actually inserted
using 
.insertTextContent(range, object, absorb)) 

Hope this helps.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to