summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2000-01-25 16:47:19 +0000
committerOwen Taylor <otaylor@src.gnome.org>2000-01-25 16:47:19 +0000
commit016a45152463580740f4b5ad2867b219a6940477 (patch)
tree3578d1164ade10df7e288f301891a150cf93a73a
parente91d0a6bf286d144e185856e6a443c484a5eeee1 (diff)
downloadgdk-pixbuf-016a45152463580740f4b5ad2867b219a6940477.tar.gz
Fix
Tue Jan 25 11:43:21 2000 Owen Taylor <otaylor@redhat.com> * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-05
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtkinvisible.h4
8 files changed, 37 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 76d38507e..f9da954bd 100644
--- 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
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 76d38507e..f9da954bd 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -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
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 76d38507e..f9da954bd 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 76d38507e..f9da954bd 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -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
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 76d38507e..f9da954bd 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -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
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 76d38507e..f9da954bd 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 76d38507e..f9da954bd 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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
diff --git a/gtk/gtkinvisible.h b/gtk/gtkinvisible.h
index 73485a232..3564fafc2 100644
--- a/gtk/gtkinvisible.h
+++ b/gtk/gtkinvisible.h
@@ -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);