2007-06-02 Armin Burgmeier <armin@openismus.com>
authorArmin Burgmeier <armin@openismus.com>
Sat, 2 Jun 2007 16:00:55 +0000 (16:00 +0000)
committerArmin Burgmeier <armin@openismus.com>
Sat, 2 Jun 2007 16:00:55 +0000 (16:00 +0000)
* src/maemo/easysetup/modest-easysetup-wizard.c: Added a note that the
server type cannot be changed in future to the incoming details page
when creating an account. This fixes projects.maemo.org bug NB#59029.

pmo-trunk-r2046

ChangeLog2
src/maemo/easysetup/modest-easysetup-wizard.c

index 6f11916..f04e49a 100644 (file)
@@ -1,5 +1,11 @@
 2007-06-02  Armin Burgmeier  <armin@openismus.com>
 
+       * src/maemo/easysetup/modest-easysetup-wizard.c: Added a note that the
+       server type cannot be changed in future to the incoming details page
+       when creating an account. This fixes projects.maemo.org bug NB#59029.
+
+2007-06-02  Armin Burgmeier  <armin@openismus.com>
+
        * src/maemo/easysetup/modest-easysetup-wizard.c: Made labels wrapping
        and assigned max width chars so that they wrap instead of being
        truncated. Fixes projects.maemo.org bug NB#56126.
index 80e5cbd..6a32d55 100644 (file)
@@ -565,6 +565,13 @@ static void on_combo_servertype_changed(GtkComboBox *combobox, gpointer user_dat
 static GtkWidget* create_page_custom_incoming (ModestEasysetupWizardDialog *self)
 {
        GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
+
+       /* Show note that account type cannot be changed in future: */
+       GtkWidget *label = gtk_label_new (_("mcen_ia_emailsetup_account_type"));
+       gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
+       gtk_label_set_max_width_chars (GTK_LABEL (label), 40);
+       gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, MODEST_MARGIN_HALF);
+       gtk_widget_show (label);
        
        /* Create a size group to be used by all captions.
         * Note that HildonCaption does not create a default size group if we do not specify one.