* Changes in the autotools stuff affecting a lot of platform dependent
[modest] / src / widgets / modest-limit-retrieve-combo-box.c
index 46c922f..2428b89 100644 (file)
@@ -84,7 +84,7 @@ enum MODEL_COLS {
        MODEL_COL_NUM = 1 /* an int */
 };
 
-void modest_limit_retrieve_combo_box_fill (ModestLimitRetrieveComboBox *combobox);
+static void modest_limit_retrieve_combo_box_fill (ModestLimitRetrieveComboBox *combobox);
 
 static void
 modest_limit_retrieve_combo_box_init (ModestLimitRetrieveComboBox *self)
@@ -121,7 +121,7 @@ modest_limit_retrieve_combo_box_new (void)
  * #combobox: The combo box.
  * @protocol: IMAP or POP.
  */
-void modest_limit_retrieve_combo_box_fill (ModestLimitRetrieveComboBox *combobox)
+static void modest_limit_retrieve_combo_box_fill (ModestLimitRetrieveComboBox *combobox)
 {      
        ModestLimitRetrieveComboBoxPrivate *priv = LIMIT_RETRIEVE_COMBO_BOX_GET_PRIVATE (combobox);
        
@@ -143,7 +143,7 @@ void modest_limit_retrieve_combo_box_fill (ModestLimitRetrieveComboBox *combobox
        gtk_list_store_set (liststore, &iter, MODEL_COL_NUM, 50, MODEL_COL_NAME, _("mcen_fi_advsetup_retrieve_50"), -1);
 
        gtk_list_store_append (liststore, &iter);
-       gtk_list_store_set (liststore, &iter, MODEL_COL_NUM, 10, MODEL_COL_NAME, _("mcen_fi_advsetup_retrieve_10"), -1);
+       gtk_list_store_set (liststore, &iter, MODEL_COL_NUM, 20, MODEL_COL_NAME, _("mcen_fi_advsetup_retrieve_20"), -1);
 }
 
 /**