summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-05
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtkclist.c3
8 files changed, 38 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index c903cd4db3..3b6d5375dc 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,8 @@
+Fri Feb 8 14:30:14 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkclist.c (title_focus_in): Return FALSE if
+ not shoing the titles. (#70959, Thomas Leonard)
+
2002-02-08 Darin Adler <darin@bentspoon.com>
* demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c
index 1e73ed5b63..f831d153b5 100644
--- a/gtk/gtkclist.c
+++ b/gtk/gtkclist.c
@@ -6614,6 +6614,9 @@ title_focus_in (GtkCList *clist, gint dir)
gint i;
gint left, right;
+ if (!GTK_CLIST_SHOW_TITLES (clist))
+ return FALSE;
+
/* Check last focused column */
if (clist->focus_header_column != -1)
{