[glade--]wrong declaration for visibility_notify_event

Philipp Klaus Krause <[email protected]> Sun, 02 May 2004 18:30:56 +0200
Newsgroups gmane.comp.gnome.glademm
Message-ID <[email protected]>
I created a program with glade-2 that has
Drawing area widget in it. The widget resides in it's
own class and file. I added a signal handler for
visibility_notify_event. The declaration in the
_glade.hh header file generated is

virtual void
on_mainview_visibility_notify_event() = 0;

while it should be

virtual bool
on_mainview_visibility_notify_event(GdkEventVisibility* ev) = 0;

Philipp Klasu Krause