summaryrefslogtreecommitdiff
path: root/gtk/gtkadjustment.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2001-03-15 19:02:23 +0000
committerHavoc Pennington <hp@src.gnome.org>2001-03-15 19:02:23 +0000
commit872efdd9a527e472e5f2724138344fdef3839df4 (patch)
tree6bc28e0f5ea0b1108b26a10a42b798e1e3451263 /gtk/gtkadjustment.h
parent549537e6de0601117aa323006d1a9264fad1503d (diff)
downloadgtk+-872efdd9a527e472e5f2724138344fdef3839df4.tar.gz
Delete.
2001-03-14 Havoc Pennington <hp@redhat.com> * gtk/gtkdata.h, gtk/gtkdata.c: Delete. * gtk/gtk.h: remove gtkdata.h * gtk/Makefile.am: remove gtkdata * gtk/gtktext.c (gtk_text_set_adjustments): connect to "destroy" not "disconnect" on the adjustments. * gtk/gtktooltips.h, gtk/gtktooltips.c: derive from GtkObject not GtkData * gtk/gtkadjustment.h, gtk/gtkadjustment.c: derive from GtkObject not GtkData * configure.in: handle case where X render exists, but Pango lacks Xft support. 2001-03-14 Havoc Pennington <hp@redhat.com> * Makefile.am (gdk-pixbuf-marshal.c): Use different temporary file from gdk-pixbuf-marshal.h, fixes parallel makes. 2001-03-14 Havoc Pennington <hp@redhat.com> * gtk/gtk-docs.sgml: remove gtkdata, gtktreemodelsimple * gtk/gtk.types: remove gtk_data_get_type
Diffstat (limited to 'gtk/gtkadjustment.h')
-rw-r--r--gtk/gtkadjustment.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkadjustment.h b/gtk/gtkadjustment.h
index 01df904176..3a9a48d46e 100644
--- a/gtk/gtkadjustment.h
+++ b/gtk/gtkadjustment.h
@@ -29,7 +29,7 @@
#include <gdk/gdk.h>
-#include <gtk/gtkdata.h>
+#include <gtk/gtkobject.h>
#ifdef __cplusplus
@@ -50,7 +50,7 @@ typedef struct _GtkAdjustmentClass GtkAdjustmentClass;
struct _GtkAdjustment
{
- GtkData data;
+ GtkObject parent_instance;
gfloat lower;
gfloat upper;
@@ -62,7 +62,7 @@ struct _GtkAdjustment
struct _GtkAdjustmentClass
{
- GtkDataClass parent_class;
+ GtkObjectClass parent_class;
void (* changed) (GtkAdjustment *adjustment);
void (* value_changed) (GtkAdjustment *adjustment);