mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
let you set the titles to be active, even if they aren't visible.
2000-05-29 Jonathan Blandford <jrb@redhat.com> * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the titles to be active, even if they aren't visible. (gtk_clist_column_titles_passive): Ditto.
This commit is contained in:
parent
bace0659d2
commit
4ceed6bf51
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
|
||||
titles to be active, even if they aren't visible.
|
||||
(gtk_clist_column_titles_passive): Ditto.
|
||||
|
||||
2000-05-21 Nils Barth <nils_barth@post.harvard.edu>
|
||||
|
||||
|
@ -1367,9 +1367,6 @@ gtk_clist_column_titles_active (GtkCList *clist)
|
||||
g_return_if_fail (clist != NULL);
|
||||
g_return_if_fail (GTK_IS_CLIST (clist));
|
||||
|
||||
if (!GTK_CLIST_SHOW_TITLES(clist))
|
||||
return;
|
||||
|
||||
for (i = 0; i < clist->columns; i++)
|
||||
gtk_clist_column_title_active (clist, i);
|
||||
}
|
||||
@ -1382,9 +1379,6 @@ gtk_clist_column_titles_passive (GtkCList *clist)
|
||||
g_return_if_fail (clist != NULL);
|
||||
g_return_if_fail (GTK_IS_CLIST (clist));
|
||||
|
||||
if (!GTK_CLIST_SHOW_TITLES(clist))
|
||||
return;
|
||||
|
||||
for (i = 0; i < clist->columns; i++)
|
||||
gtk_clist_column_title_passive (clist, i);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user