aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_account_dialog.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-05-21 05:51:42 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-05-21 05:51:42 +0000
commit3dcb98e04d7b1cfc96c39a67cee9094fef147b73 (patch)
tree3be27d8ba9166d76ed18d0a58cb6ba954ba0c2d0 /src/prefs_account_dialog.c
parent434d2aaea54f6ea8f13ce28bf59cb4d5164ef889 (diff)
removed warnings 'GtkSpinButton: setting an adjustment with non-zero page size is deprecated'.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2542 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_account_dialog.c')
-rw-r--r--src/prefs_account_dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs_account_dialog.c b/src/prefs_account_dialog.c
index 6df3b1ed..a9d9dac1 100644
--- a/src/prefs_account_dialog.c
+++ b/src/prefs_account_dialog.c
@@ -1016,7 +1016,7 @@ static void prefs_account_receive_create(void)
gtk_label_set_justify (GTK_LABEL (maxarticle_label), GTK_JUSTIFY_LEFT);
maxarticle_spinbtn_adj =
- gtk_adjustment_new (300, 0, 10000, 10, 100, 100);
+ gtk_adjustment_new (300, 0, 10000, 10, 100, 0);
maxarticle_spinbtn = gtk_spin_button_new
(GTK_ADJUSTMENT (maxarticle_spinbtn_adj), 10, 0);
gtk_widget_show (maxarticle_spinbtn);