Hi there,

I posted to the list, but it doesn't seem to have been approved yet,
so I figured I'd send a reply directly to you.

I spend a few hours looking into the same "Invalid memory access of
location 0x8 eip=0x4a8aeb" problem yesterday. What I found out is that
there seems to be a dependency on the order of class loading. If
com.extjs.gxt.ui.client.widget.Layout is loaded too late, the
classloader dies.

I added the following to the beginning of my module's onModuleLoad()
method to force Layout to load before my subclasses are loaded.

       @SuppressWarnings("unused")
       Layout junk = new AnchorLayout();

I tried using Class.forName(), but that didn't seem to fix it -- only
explicitly referencing the class did.

Let me know if this fix also works for you.

BTW, are you running on a Mac as well?

- sekhar

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.


Reply via email to