Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>

	* gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
This commit is contained in:
Owen Taylor 2000-01-25 16:47:19 +00:00 committed by Owen Taylor
parent e91d0a6bf2
commit 016a451524
8 changed files with 37 additions and 2 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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);