GNOME Bugzilla – Bug 631336
remove lists of gtk+ signal args in gtkdoc-scanobj and -scangobj
Last modified: 2010-10-20 08:55:52 UTC
With the recent rewrites in gtk some argument types changed: http://library.gnome.org/devel/gtk/unstable/GtkWidget.html#GtkWidget-draw GdkRectangle -> cairo_t This is because of lookup_signal_arg_names() in the two scanners. I think lookup_signal_arg_names() and get_gdk_event() should just be removed. Instead the signals in gtk+ need a documentation blob like it is needed in all other libraries.
Created attachment 171712 [details] [review] remove lookup_signal_arg_names()
I can do the same for get_gdk_event() if it sounds like a good idea.
This seems related: GtkNotebookPage is still showed in ::switch-page signal: http://library.gnome.org/devel/gtk/unstable/GtkNotebook.html#GtkNotebook-switch-page
Also pushed the 2nd part. commit 23e5c3c5c7b80e27321925507e089fa9b3f7a364 Author: Stefan Kost <ensonic@users.sf.net> Date: Wed Oct 20 11:51:43 2010 +0300 scan(g)obj: remove special case handling for GdkEvent Remove get_gdk_event() as those things should be just properly documented in the library. Fixes #631336