Hey,
I'm not sure, but since the last updates (i've skipped april and updated with the may updates again) there probably were some changes in the Gui.update() methods.
In my project I'm using Berkelium in the way it was shown in this thread:
http://www.esenthel.com/community/showth...p?tid=4217
The update-method of the webwindow objects:
Code:
void webWindow::update(GuiPC &gpc) {
Berkelium::update();
handleEvents();
super::update(gpc);
}
It never had to be called explicit, but since the last updates our menu stoped working and I located the problem, that the update-method is not called anymore implicit with Gui.update(), when I call Berkelium::update() explicit in the update-method of the current state, it works again.
At the moment I just don't know what's about the GuiPC and how I could retrieve it to create a work-around I can call on myself. Maybe there are other things messed up and the problems not the Gui.update()-method, but I did not change anything in my Berkelium-integration.
So anybody has an idea about my problem? Can anyone confirm the problem with Gui.update()? And lust but not least: any hint about how I could retrieve a GuiPC-reference for calling the needed updates myself?
Thanks for any response.