From 4ceed6bf510ab8b03ba5de63dc580aa8b26e4d30 Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Mon, 29 May 2000 21:29:38 +0000 Subject: [PATCH] let you set the titles to be active, even if they aren't visible. 2000-05-29 Jonathan Blandford * 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 | 1 + ChangeLog.pre-2-0 | 1 + ChangeLog.pre-2-10 | 1 + ChangeLog.pre-2-2 | 1 + ChangeLog.pre-2-4 | 1 + ChangeLog.pre-2-6 | 1 + ChangeLog.pre-2-8 | 1 + gtk/gtkclist.c | 6 ------ 8 files changed, 7 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e936b3411..46e393bb48 100644 --- 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 diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 6e936b3411..46e393bb48 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -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 diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 6e936b3411..46e393bb48 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -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 diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 6e936b3411..46e393bb48 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -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 diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 6e936b3411..46e393bb48 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -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 diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 6e936b3411..46e393bb48 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -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 diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 6e936b3411..46e393bb48 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -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 diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c index 15c2499420..c0ddcb62f4 100644 --- a/gtk/gtkclist.c +++ b/gtk/gtkclist.c @@ -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); }