diff options
author | Elliot Lee <sopwith@src.gnome.org> | 2000-07-24 16:19:00 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 2000-07-24 16:19:00 +0000 |
commit | 6d7a643f7cc4f0d022ede73c369fc5624cf98b6f (patch) | |
tree | fe564cab7b7b0216796f431407ffc9fba115c360 /gdk/linux-fb/gdkinputprivate.h | |
parent | 72aa0d6611ca379ce79c79adff6f50ad7be94031 (diff) | |
download | gtk+-6d7a643f7cc4f0d022ede73c369fc5624cf98b6f.tar.gz |
(Part 2) Remove gdk_*_lookup() defines, since they are defined by the
(Part 2)
* gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
individual backends already.
* gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
again. Yes, there really is a good reason for this, if you are using the gdkregion
internals, and if you're not, why do you care?
* gdk/gdkwindow.c: Fix inverted condition
* gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
* gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
* gtk/gtkrange.c: Redraw trough when moving.
* gtk/gtktypeutils.c: Fix warning by adding const cast.
* modules/linux-fb/basic.c: Fix unknown glyph retrieval.
Diffstat (limited to 'gdk/linux-fb/gdkinputprivate.h')
-rw-r--r-- | gdk/linux-fb/gdkinputprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/linux-fb/gdkinputprivate.h b/gdk/linux-fb/gdkinputprivate.h index 1857a34317..5e7d85c261 100644 --- a/gdk/linux-fb/gdkinputprivate.h +++ b/gdk/linux-fb/gdkinputprivate.h @@ -95,7 +95,7 @@ struct _GdkAxisInfo #define GDK_INPUT_NUM_EVENTC 6 struct _GdkDevicePrivate { - GdkDeviceInfo info; + GdkDevice info; }; struct _GdkInputWindow @@ -120,7 +120,7 @@ struct _GdkInputWindow /* Global data */ -extern const GdkDeviceInfo gdk_input_core_info; +extern const GdkDevice gdk_input_core_info; extern GList *gdk_input_devices; extern GList *gdk_input_windows; |