]> Pileus Git - ~andy/gtk/commitdiff
let you set the titles to be active, even if they aren't visible.
authorJonathan Blandford <jrb@redhat.com>
Mon, 29 May 2000 21:29:38 +0000 (21:29 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Mon, 29 May 2000 21:29:38 +0000 (21:29 +0000)
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.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkclist.c

index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
@@ -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>
 
index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
@@ -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>
 
index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
@@ -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>
 
index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
@@ -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>
 
index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
@@ -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>
 
index 6e936b341118423944f4205c5247380814e0016f..46e393bb4825514fb234483f8241e025d5f2f723 100644 (file)
@@ -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>
 
index 15c2499420ddbca6429b3cce6735f8522e4840a6..c0ddcb62f4a223a37a981caeebb99f28364e9b22 100644 (file)
@@ -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);
 }