diff --git a/ChangeLog b/ChangeLog index 22531467e5..a91a038f33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/gtk/gtktypeutils.c b/gtk/gtktypeutils.c index 6ccc90eaa1..1d3fed1c1a 100644 --- a/gtk/gtktypeutils.c +++ b/gtk/gtktypeutils.c @@ -894,6 +894,8 @@ gtk_type_query (GtkType type) query->type_name = node->type_info.type_name; query->object_size = node->type_info.object_size; query->class_size = node->type_info.class_size; + + return query; } return NULL;