diff options
author | Milan Crha <mcrha@redhat.com> | 2008-12-15 19:46:53 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-12-15 19:46:53 +0800 |
commit | 7365be40fe5adb231140711487e798438ff8777a (patch) | |
tree | 4b763d5bcb1c1fd483dc1ae3510b1802e9118def /mail | |
parent | 7c0d77d3d42067a22e5022c954f3ac44c6bf1efb (diff) | |
download | gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.gz gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.tar.zst gsoc2013-evolution-7365be40fe5adb231140711487e798438ff8777a.zip |
** Part of fix for bug #563669
2008-12-15 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #563669
* mail/em-account-editor.c: (emae_option_checkspin):
* filter/filter-int.c: (get_widget):
* calendar/gui/dialogs/recurrence-page.c: (make_ending_count_special):
* calendar/conduits/todo/todo-conduit.c: (e_todo_gui_new):
Use zero GtkSpinButton's PageSize, as Gtk+ requires.
svn path=/trunk/; revision=36892
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-account-editor.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9474b2618f..d1fd83f40d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2008-12-15 Milan Crha <mcrha@redhat.com> + + ** Part of fix for bug #563669 + + * em-account-editor.c: (emae_option_checkspin): + Use zero GtkSpinButton's PageSize, as Gtk+ requires. + 2008-12-15 Srinivasa Ragavan <sragavan@novell.com> * em-format-html-display.c: Fix a impllicit warning diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 9d82b61620..b9850bd052 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -1999,7 +1999,7 @@ emae_option_checkspin(EMAccountEditorService *service, CamelURL *url, const char hbox = gtk_hbox_new(FALSE, 0); check = g_object_new(gtk_check_button_get_type(), "label", pre, "use_underline", TRUE, "active", enable, NULL); - spin = gtk_spin_button_new((GtkAdjustment *)gtk_adjustment_new(def, min, max, 1, 1, 1), 1, 0); + spin = gtk_spin_button_new((GtkAdjustment *)gtk_adjustment_new(def, min, max, 1, 1, 0), 1, 0); if (post) label = gtk_label_new_with_mnemonic(post); gtk_box_pack_start((GtkBox *)hbox, check, FALSE, TRUE, 0); |