diff --git a/ChangeLog b/ChangeLog index bc82a58bb4..13663bb9a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-07 Matthias Clasen + + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod() to cope with C libraries with + crippled locale support. (#115293) + 2003-08-07 Hans Breuer * gdk/win32/gdkevents-win32.c : finally use TrackMouseEvent @@ -17,6 +22,9 @@ 2003-08-07 Matthias Clasen + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod(), not strtod() to cope with + C libraries with crippled locale support. (#115293) + * gtk/gtkctree.c (draw_row): Don't cut descenders when rendering. (#118646, Charles Kerr) 2003-08-06 Hans Breuer diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index bc82a58bb4..13663bb9a7 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2003-08-07 Matthias Clasen + + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod() to cope with C libraries with + crippled locale support. (#115293) + 2003-08-07 Hans Breuer * gdk/win32/gdkevents-win32.c : finally use TrackMouseEvent @@ -17,6 +22,9 @@ 2003-08-07 Matthias Clasen + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod(), not strtod() to cope with + C libraries with crippled locale support. (#115293) + * gtk/gtkctree.c (draw_row): Don't cut descenders when rendering. (#118646, Charles Kerr) 2003-08-06 Hans Breuer diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index bc82a58bb4..13663bb9a7 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2003-08-07 Matthias Clasen + + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod() to cope with C libraries with + crippled locale support. (#115293) + 2003-08-07 Hans Breuer * gdk/win32/gdkevents-win32.c : finally use TrackMouseEvent @@ -17,6 +22,9 @@ 2003-08-07 Matthias Clasen + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod(), not strtod() to cope with + C libraries with crippled locale support. (#115293) + * gtk/gtkctree.c (draw_row): Don't cut descenders when rendering. (#118646, Charles Kerr) 2003-08-06 Hans Breuer diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index bc82a58bb4..13663bb9a7 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2003-08-07 Matthias Clasen + + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod() to cope with C libraries with + crippled locale support. (#115293) + 2003-08-07 Hans Breuer * gdk/win32/gdkevents-win32.c : finally use TrackMouseEvent @@ -17,6 +22,9 @@ 2003-08-07 Matthias Clasen + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod(), not strtod() to cope with + C libraries with crippled locale support. (#115293) + * gtk/gtkctree.c (draw_row): Don't cut descenders when rendering. (#118646, Charles Kerr) 2003-08-06 Hans Breuer diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index bc82a58bb4..13663bb9a7 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2003-08-07 Matthias Clasen + + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod() to cope with C libraries with + crippled locale support. (#115293) + 2003-08-07 Hans Breuer * gdk/win32/gdkevents-win32.c : finally use TrackMouseEvent @@ -17,6 +22,9 @@ 2003-08-07 Matthias Clasen + * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod(), not strtod() to cope with + C libraries with crippled locale support. (#115293) + * gtk/gtkctree.c (draw_row): Don't cut descenders when rendering. (#118646, Charles Kerr) 2003-08-06 Hans Breuer diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index cfd0270baf..777a84f3ae 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -1498,7 +1498,7 @@ gtk_spin_button_default_input (GtkSpinButton *spin_button, { gchar *err = NULL; - *new_val = strtod (gtk_entry_get_text (GTK_ENTRY (spin_button)), &err); + *new_val = g_strtod (gtk_entry_get_text (GTK_ENTRY (spin_button)), &err); if (*err) return GTK_INPUT_ERROR; else