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

--- Comment #5 from Vladimir Sokolinskiy <[email protected]> ---
The array elements are correct in all examples. The construct p(0).X "sees" the
previous version of p(0).

Sub TestAWTPoint5
  Dim p(0) As New com.sun.star.awt.Point, q
  Dim h As New com.sun.star.awt.Point
  Dim v
  p(0).X=9
  h.X=1
  p(0)=h
  Msgbox "h.X=" & h.X & " p(0).X=" & p(0).X   ' h.X=1 p(0).X=9
  v=p(0)
  Msgbox "v.X=" & v.X                         ' v.X=1  
End Sub

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

Reply via email to