mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Two signals (gtk_action_sync_property and gtk_action_sync_sensitive) were
2004-08-22 Philip Langdale <plangdale@vmware.com> * gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals (gtk_action_sync_property and gtk_action_sync_sensitive) were not being correctly disconnected, leading to actions continuing to affect disconnected proxies. (#150607)
This commit is contained in:
parent
7ed263a266
commit
515c055ccd
@ -1,3 +1,10 @@
|
||||
2004-08-22 Philip Langdale <plangdale@vmware.com>
|
||||
|
||||
* gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals
|
||||
(gtk_action_sync_property and gtk_action_sync_sensitive) were
|
||||
not being correctly disconnected, leading to actions continuing
|
||||
to affect disconnected proxies. (#150607)
|
||||
|
||||
2004-08-22 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_new_internal,
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-08-22 Philip Langdale <plangdale@vmware.com>
|
||||
|
||||
* gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals
|
||||
(gtk_action_sync_property and gtk_action_sync_sensitive) were
|
||||
not being correctly disconnected, leading to actions continuing
|
||||
to affect disconnected proxies. (#150607)
|
||||
|
||||
2004-08-22 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_new_internal,
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-08-22 Philip Langdale <plangdale@vmware.com>
|
||||
|
||||
* gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals
|
||||
(gtk_action_sync_property and gtk_action_sync_sensitive) were
|
||||
not being correctly disconnected, leading to actions continuing
|
||||
to affect disconnected proxies. (#150607)
|
||||
|
||||
2004-08-22 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_new_internal,
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-08-22 Philip Langdale <plangdale@vmware.com>
|
||||
|
||||
* gtk/gtkaction.c (gtk_action_disconnect_proxy): Two signals
|
||||
(gtk_action_sync_property and gtk_action_sync_sensitive) were
|
||||
not being correctly disconnected, leading to actions continuing
|
||||
to affect disconnected proxies. (#150607)
|
||||
|
||||
2004-08-22 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (gdk_window_new_internal,
|
||||
|
@ -968,12 +968,12 @@ disconnect_proxy (GtkAction *action,
|
||||
action);
|
||||
|
||||
/* disconnect handlers for notify::* signals */
|
||||
g_signal_handlers_disconnect_by_func (proxy,
|
||||
g_signal_handlers_disconnect_by_func (action,
|
||||
G_CALLBACK (gtk_action_sync_sensitivity),
|
||||
action);
|
||||
g_signal_handlers_disconnect_by_func (proxy,
|
||||
proxy);
|
||||
g_signal_handlers_disconnect_by_func (action,
|
||||
G_CALLBACK (gtk_action_sync_property),
|
||||
action);
|
||||
proxy);
|
||||
|
||||
g_signal_handlers_disconnect_by_func (action,
|
||||
G_CALLBACK (gtk_action_sync_stock_id), proxy);
|
||||
|
Loading…
Reference in New Issue
Block a user