GNOME Bugzilla – Bug 581709
gtk_window_set_skip_taskbar_hint() throws critical warning
Last modified: 2009-09-10 22:53:11 UTC
In latest GTK+ Git. (set-skip-taskbar-hint:7987): Gdk-CRITICAL **: gdk_x11_atom_to_xatom_for_display: assertion `atom != GDK_NONE' failed
Created attachment 134177 [details] testcase A test case that reveals the critical.
The git version of gdk_x11_atom_to_xatom_for_display starts like this: Atom gdk_x11_atom_to_xatom_for_display (GdkDisplay *display, GdkAtom atom) { Atom xatom = None; g_return_val_if_fail (GDK_IS_DISPLAY (display), None); if (atom == GDK_NONE) return None; if (display->closed) return None; [...] so it cannot really throw the warning that you are seeing, any longer. I've fixed that a few days ago (maybe last week ?)