adde g_return_if_fail() statements.

Sat Sep 26 06:15:34 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtkclist.c (gtk_clist_sort):
        (gtk_clist_clear):
        (gtk_clist_unselect_all):
        (gtk_clist_select_all): adde g_return_if_fail() statements.
This commit is contained in:
Tim Janik 1998-09-26 06:31:30 +00:00 committed by Tim Janik
parent d0b7b3f5c9
commit fbe8f91806
8 changed files with 61 additions and 0 deletions

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1,3 +1,10 @@
Sat Sep 26 06:15:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (gtk_clist_sort):
(gtk_clist_clear):
(gtk_clist_unselect_all):
(gtk_clist_select_all): adde g_return_if_fail() statements.
Sat Sep 26 04:46:22 1998 Tim Janik <timj@gtk.org>
* configure.in: set binary age and interface age to 0.

View File

@ -1915,6 +1915,9 @@ sync_selection (GtkCList * clist,
void
gtk_clist_clear (GtkCList * clist)
{
g_return_if_fail (clist != NULL);
g_return_if_fail (GTK_IS_CLIST (clist));
GTK_CLIST_CLASS_FW (clist)->clear (clist);
}
@ -5906,6 +5909,9 @@ gtk_clist_focus (GtkContainer * container,
void
gtk_clist_unselect_all (GtkCList * clist)
{
g_return_if_fail (clist != NULL);
g_return_if_fail (GTK_IS_CLIST (clist));
GTK_CLIST_CLASS_FW (clist)->unselect_all (clist);
}
@ -5959,6 +5965,9 @@ real_unselect_all (GtkCList * clist)
void
gtk_clist_select_all (GtkCList * clist)
{
g_return_if_fail (clist != NULL);
g_return_if_fail (GTK_IS_CLIST (clist));
GTK_CLIST_CLASS_FW (clist)->select_all (clist);
}
@ -6259,6 +6268,9 @@ gtk_clist_mergesort (GtkCList *clist,
void
gtk_clist_sort (GtkCList *clist)
{
g_return_if_fail (clist != NULL);
g_return_if_fail (GTK_IS_CLIST (clist));
GTK_CLIST_CLASS_FW (clist)->sort_list (clist);
}