diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-11-07 21:49:13 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-11-07 21:49:13 +0000 |
commit | b56f96c98da5da1108f59c583352014e919fb978 (patch) | |
tree | b147416817e5dfffc534c6d49a114ee4c73f5311 | |
parent | 1751a749166de2f51541b5515ccb8d35ce3829e7 (diff) | |
download | gtk+-b56f96c98da5da1108f59c583352014e919fb978.tar.gz |
Fix misplaced display_grab()/display_ungrab(); they shouldn't have been
Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab();
they shouldn't have been deprecated.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gdk/x11/gdkx.h | 6 |
7 files changed, 33 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab(); + they shouldn't have been deprecated. + 2002-11-07 Matthias Clasen <maclas@gmx.de> * gdk/gdk.c (gdk_display_open_default_libgtk_only): Use diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index f7fed6d2ff..bed9bc1c8e 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab(); + they shouldn't have been deprecated. + 2002-11-07 Matthias Clasen <maclas@gmx.de> * gdk/gdk.c (gdk_display_open_default_libgtk_only): Use diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index f7fed6d2ff..bed9bc1c8e 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab(); + they shouldn't have been deprecated. + 2002-11-07 Matthias Clasen <maclas@gmx.de> * gdk/gdk.c (gdk_display_open_default_libgtk_only): Use diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index f7fed6d2ff..bed9bc1c8e 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab(); + they shouldn't have been deprecated. + 2002-11-07 Matthias Clasen <maclas@gmx.de> * gdk/gdk.c (gdk_display_open_default_libgtk_only): Use diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index f7fed6d2ff..bed9bc1c8e 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab(); + they shouldn't have been deprecated. + 2002-11-07 Matthias Clasen <maclas@gmx.de> * gdk/gdk.c (gdk_display_open_default_libgtk_only): Use diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index f7fed6d2ff..bed9bc1c8e 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Thu Nov 7 16:45:54 2002 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkx.h: Fix misplaced display_grab()/display_ungrab(); + they shouldn't have been deprecated. + 2002-11-07 Matthias Clasen <maclas@gmx.de> * gdk/gdk.c (gdk_display_open_default_libgtk_only): Use diff --git a/gdk/x11/gdkx.h b/gdk/x11/gdkx.h index 79d2bfe680..93c5cdfca0 100644 --- a/gdk/x11/gdkx.h +++ b/gdk/x11/gdkx.h @@ -169,6 +169,9 @@ Atom gdk_x11_get_xatom_by_name (const gchar *atom_name); G_CONST_RETURN gchar *gdk_x11_get_xatom_name (Atom xatom); #endif +void gdk_x11_display_grab (GdkDisplay *display); +void gdk_x11_display_ungrab (GdkDisplay *display); + #ifndef GDK_DISABLE_DEPRECATED Display * gdk_x11_font_get_xdisplay (GdkFont *font); @@ -185,9 +188,6 @@ G_CONST_RETURN char *gdk_x11_font_get_name (GdkFont *font); #endif /* GDK_MULTIHEAD_SAFE */ #define gdk_font_lookup_for_display(display, xid) ((GdkFont*) gdk_xid_table_lookup_for_display (display, xid)) -void gdk_x11_display_grab (GdkDisplay *display); -void gdk_x11_display_ungrab (GdkDisplay *display); - #endif /* GDK_DISABLE_DEPRECATED */ G_END_DECLS |