You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2015/03/07 10:41:58 UTC

[Issue 52057] starbasic:Global of userdefined type gets lost

https://bz.apache.org/ooo/show_bug.cgi?id=52057

bmarcelly <ma...@club-internet.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marcelly@club-internet.fr

--- Comment #4 from bmarcelly <ma...@club-internet.fr> ---
Simpler workaround:
  Global oMyObj As Variant
and initialize at runtime, as in your code.

Same bug and solution with a Uno structure
  Global aDate As New com.sun.star.util.Date
replace with :

Global aDate As Object

Sub initalize
  aDate = New com.sun.star.util.Date
  aDate.Year  = 2015
 ....
End Sub

-- 
You are receiving this mail because:
You are on the CC list for the issue.