From 357833d9a350115988650e97ae6911902f5e427c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Mar 2003 23:44:23 +0000 Subject: [PATCH] Add C-A-PgUp and C-A-PgDown as alternatives to the A-less variants. 2003-03-29 Matthias Clasen * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and C-A-PgDown as alternatives to the A-less variants. (#97860) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-4 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gtk/gtknotebook.c | 4 ++-- 6 files changed, 32 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 25aa493e49..9e2f41cd42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-03-29 Matthias Clasen + + * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and + C-A-PgDown as alternatives to the A-less variants. (This slipped + in accidentally some time ago). (#97860) + 2003-03-26 Sven Neumann * gtk/gtktreeview.c: rewrote the function that does node and arrow diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 25aa493e49..9e2f41cd42 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2003-03-29 Matthias Clasen + + * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and + C-A-PgDown as alternatives to the A-less variants. (This slipped + in accidentally some time ago). (#97860) + 2003-03-26 Sven Neumann * gtk/gtktreeview.c: rewrote the function that does node and arrow diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 25aa493e49..9e2f41cd42 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +2003-03-29 Matthias Clasen + + * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and + C-A-PgDown as alternatives to the A-less variants. (This slipped + in accidentally some time ago). (#97860) + 2003-03-26 Sven Neumann * gtk/gtktreeview.c: rewrote the function that does node and arrow diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 25aa493e49..9e2f41cd42 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2003-03-29 Matthias Clasen + + * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and + C-A-PgDown as alternatives to the A-less variants. (This slipped + in accidentally some time ago). (#97860) + 2003-03-26 Sven Neumann * gtk/gtktreeview.c: rewrote the function that does node and arrow diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 25aa493e49..9e2f41cd42 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2003-03-29 Matthias Clasen + + * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and + C-A-PgDown as alternatives to the A-less variants. (This slipped + in accidentally some time ago). (#97860) + 2003-03-26 Sven Neumann * gtk/gtktreeview.c: rewrote the function that does node and arrow diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 911b48c550..2f7061526e 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -574,11 +574,11 @@ gtk_notebook_class_init (GtkNotebookClass *class) G_TYPE_INT, 1); gtk_binding_entry_add_signal (binding_set, - GDK_Page_Up, GDK_CONTROL_MASK|GDK_MOD1_MASK, + GDK_Page_Up, GDK_CONTROL_MASK | GDK_MOD1_MASK, "change_current_page", 1, G_TYPE_INT, -1); gtk_binding_entry_add_signal (binding_set, - GDK_Page_Down, GDK_CONTROL_MASK|GDK_MOD1_MASK, + GDK_Page_Down, GDK_CONTROL_MASK | GDK_MOD1_MASK, "change_current_page", 1, G_TYPE_INT, 1);