summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2000-02-13 07:03:53 +0000
committerTim Janik <timj@src.gnome.org>2000-02-13 07:03:53 +0000
commita3260744380851cf90dfd9400e58e44b71f3e60a (patch)
tree014958d6bbbf5d2c7774b01efe59e1136fa4e28c
parent778cb9ab521caa51d5895c74d2761ba1bd9ecb49 (diff)
downloadgdk-pixbuf-a3260744380851cf90dfd9400e58e44b71f3e60a.tar.gz
parent class is GtkContainer, not GtkWidget.
Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org> * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer, not GtkWidget.
-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/gtksocket.c2
8 files changed, 36 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5bb81c091..281b85887 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 5bb81c091..281b85887 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 5bb81c091..281b85887 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 5bb81c091..281b85887 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 5bb81c091..281b85887 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 5bb81c091..281b85887 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 5bb81c091..281b85887 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,8 @@
+Sun Feb 13 08:02:21 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
+ not GtkWidget.
+
Fri Feb 11 02:19:32 2000 Tim Janik <timj@gtk.org>
* gtk/gtkhpaned.c (gtk_hpaned_size_allocate):
diff --git a/gtk/gtksocket.c b/gtk/gtksocket.c
index 673a8cb39..fa7b8f67a 100644
--- a/gtk/gtksocket.c
+++ b/gtk/gtksocket.c
@@ -96,7 +96,7 @@ gtk_socket_class_init (GtkSocketClass *class)
widget_class = (GtkWidgetClass*) class;
container_class = (GtkContainerClass*) class;
- parent_class = gtk_type_class (gtk_widget_get_type ());
+ parent_class = gtk_type_class (GTK_TYPE_CONTAINER);
widget_class->realize = gtk_socket_realize;
widget_class->unrealize = gtk_socket_unrealize;