Confirmed also on OO2.3 XP SP2 =[
--Nathan
Oliver Brinzing wrote:
Hi,
can somebody confirm this ? Open a spreadsheet document, set a breakpoint at "msgbox" run
macro and try to inspect "oCursor" ...
oo 2.3 (Vista) crashes with a memory leak ...
Oliver
REM ***** BASIC *****
OPTION EXPLICIT
Sub Main
Dim oSheet as Object
Dim oCursor as Object
oSheet = ThisComponent.getSheets().getByIndex(0)
oCursor = oSheet.createCursor()
Wait(50)
MsgBox "Set a BreakPoint at MsgBox, Enter >oCursor< into the watch field" &
Chr(13) &_
"Try to open the [+] oCursor - OO will freeze -> memory leak "
End Sub