diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2001-12-05 00:06:40 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2001-12-05 00:06:40 +0000 |
commit | a7bab735ad1ef4d8e5736f58b50c9003aa244e8f (patch) | |
tree | 2202e76af2134d4793d2e0855273cd9fc90c9e6f /gdk | |
parent | af05ac0e502529e12e383499022b9cfb14902048 (diff) | |
download | gtk+-a7bab735ad1ef4d8e5736f58b50c9003aa244e8f.tar.gz |
Deprecate. (#65851)
* gdk/gdkcolor.h (gdk_colormap_change): Deprecate. (#65851)
* gdk/gdktypes.h (GdkKeyInfo): Remove. (#66025)
* gtk/gtkwindow.c, gtk/gtkwidget.c: Add docs, markup fixes.
* gtk/tmpl/gtkwidget.sgml: Updates.
* gtk/Makefile.am (IGNORE_HFILES): Remove gtktextchild.h.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/gdkcolor.h | 4 | ||||
-rw-r--r-- | gdk/gdktypes.h | 11 |
2 files changed, 1 insertions, 14 deletions
diff --git a/gdk/gdkcolor.h b/gdk/gdkcolor.h index e432c98946..490f1f491f 100644 --- a/gdk/gdkcolor.h +++ b/gdk/gdkcolor.h @@ -69,11 +69,9 @@ void gdk_colormap_unref (GdkColormap *cmap); GdkColormap* gdk_colormap_get_system (void); #ifndef GDK_DISABLE_DEPRECATED gint gdk_colormap_get_system_size (void); -#endif - void gdk_colormap_change (GdkColormap *colormap, gint ncolors); - +#endif gint gdk_colormap_alloc_colors (GdkColormap *colormap, GdkColor *colors, diff --git a/gdk/gdktypes.h b/gdk/gdktypes.h index d27374d9e1..212c366dd0 100644 --- a/gdk/gdktypes.h +++ b/gdk/gdktypes.h @@ -63,7 +63,6 @@ extern "C" { /* Type definitions for the basic structures. */ -typedef struct _GdkKeyInfo GdkKeyInfo; typedef struct _GdkPoint GdkPoint; typedef struct _GdkRectangle GdkRectangle; typedef struct _GdkSegment GdkSegment; @@ -170,16 +169,6 @@ typedef void (*GdkInputFunction) (gpointer data, typedef void (*GdkDestroyNotify) (gpointer data); -/* GdkKeyInfo is a description of a the hardware key and state that - * can be mapped to some keysym. - */ -struct _GdkKeyInfo -{ - guint keycode; - gint group; - gint level; -}; - struct _GdkPoint { gint x; |