]> Pileus Git - ~andy/gtk/commitdiff
Fix
authorOwen Taylor <otaylor@redhat.com>
Tue, 25 Jan 2000 16:47:19 +0000 (16:47 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 25 Jan 2000 16:47:19 +0000 (16:47 +0000)
Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>

* gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkinvisible.h

index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 76d38507e1473b170663f3728b4c31e571dd4f07..f9da954bd8aea2eea0204c9c2e89abf869e56887 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
+       structures to properly inherit from GtkWidget not GtkBin.
+
 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gtk+.spec.in: Added lib/gtk+/include/* to %files
index 73485a232ca44cf3078fea2aa07ec03745f08157..3564fafc2107dec54d87822def1ef2911cc22378 100644 (file)
@@ -49,12 +49,12 @@ typedef struct _GtkInvisibleClass  GtkInvisibleClass;
 
 struct _GtkInvisible
 {
-  GtkBin bin;
+  GtkWidget widget;
 };
 
 struct _GtkInvisibleClass
 {
-  GtkBinClass parent_class;
+  GtkWidgetClass parent_class;
 };
 
 GtkType               gtk_invisible_get_type        (void);