Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.

Sat Jul  5 09:55:38 2003  Owen Taylor  <otaylor@redhat.com>

        * gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse):
        Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.

        * tests/testdnd.c (target_drag_motion): Make the trashcan
        open again. (Got lost in deprecation cleanup.)

        * gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
        update the icon cache serial so we don't continually
        think we are out-of-date.
This commit is contained in:
Owen Taylor
2003-07-05 15:01:16 +00:00
committed by Owen Taylor
parent 13addcbb8d
commit ec70ae2787
8 changed files with 66 additions and 3 deletions

View File

@@ -1,3 +1,15 @@
Sat Jul 5 09:55:38 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse):
Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.
* tests/testdnd.c (target_drag_motion): Make the trashcan
open again. (Got lost in deprecation cleanup.)
* gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
update the icon cache serial so we don't continually
think we are out-of-date.
2003-07-04 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_polygon,

View File

@@ -1,3 +1,15 @@
Sat Jul 5 09:55:38 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse):
Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.
* tests/testdnd.c (target_drag_motion): Make the trashcan
open again. (Got lost in deprecation cleanup.)
* gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
update the icon cache serial so we don't continually
think we are out-of-date.
2003-07-04 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_polygon,

View File

@@ -1,3 +1,15 @@
Sat Jul 5 09:55:38 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse):
Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.
* tests/testdnd.c (target_drag_motion): Make the trashcan
open again. (Got lost in deprecation cleanup.)
* gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
update the icon cache serial so we don't continually
think we are out-of-date.
2003-07-04 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_polygon,

View File

@@ -1,3 +1,15 @@
Sat Jul 5 09:55:38 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse):
Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.
* tests/testdnd.c (target_drag_motion): Make the trashcan
open again. (Got lost in deprecation cleanup.)
* gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
update the icon cache serial so we don't continually
think we are out-of-date.
2003-07-04 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_polygon,

View File

@@ -1,3 +1,15 @@
Sat Jul 5 09:55:38 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkevents-x11.c (gdk_event_send_client_message_to_all_recurse):
Somehow, a WM_STATE => _NET_WM_STATE change hand been made here.
* tests/testdnd.c (target_drag_motion): Make the trashcan
open again. (Got lost in deprecation cleanup.)
* gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
update the icon cache serial so we don't continually
think we are out-of-date.
2003-07-04 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_polygon,

View File

@@ -2070,7 +2070,7 @@ gdk_event_send_client_message_to_all_recurse (GdkDisplay *display,
gdk_error_trap_push ();
if (XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), xid,
gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE"),
gdk_x11_get_xatom_by_name_for_display (display, "WM_STATE"),
0, 0, False, AnyPropertyType,
&type, &format, &nitems, &after, &data) != Success)
goto out;

View File

@@ -2436,7 +2436,10 @@ static void
ensure_cache_up_to_date (GtkIconSet *icon_set)
{
if (icon_set->cache_serial != cache_serial)
clear_cache (icon_set, TRUE);
{
clear_cache (icon_set, TRUE);
icon_set->cache_serial = cache_serial;
}
}
static void

View File

@@ -311,7 +311,7 @@ target_drag_motion (GtkWidget *widget,
{
have_drag = TRUE;
gtk_image_set_from_pixmap (GTK_IMAGE (widget),
trashcan_closed, trashcan_closed_mask);
trashcan_open, trashcan_open_mask);
}
source_widget = gtk_drag_get_source_widget (context);