Re: GtkPlug/Socket on Win32: is_focus vs. is-focus

2005-03-22 Thread Matthias Clasen
On Tue, 2005-03-22 at 03:12 +0200, Tor Lillqvist wrote: > In gtksocket.c, we have: > > static void > gtk_socket_notify (GObject*object, > GParamSpec *pspec) > { > if (!strcmp (pspec->name, "is_focus")) > return; > > socket_update_focus_in (GTK_SOCKET (object)); > } >

GtkPlug/Socket on Win32: is_focus vs. is-focus

2005-03-21 Thread Tor Lillqvist
In gtksocket.c, we have: static void gtk_socket_notify (GObject*object, GParamSpec *pspec) { if (!strcmp (pspec->name, "is_focus")) return; socket_update_focus_in (GTK_SOCKET (object)); } Shouldn't that be "is-focus"? That is what the function actually gets called