From da7aacb87cd1d5d635f367928994c19af8c764f6 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 31 Mar 2010 17:42:14 -0400 Subject: Capplet cleanups. --- capplet/settings/mail-account-view.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'capplet/settings/mail-account-view.h') diff --git a/capplet/settings/mail-account-view.h b/capplet/settings/mail-account-view.h index 5066d83dce..618dce5361 100644 --- a/capplet/settings/mail-account-view.h +++ b/capplet/settings/mail-account-view.h @@ -10,7 +10,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with the program; if not, see + * License along with the program; if not, see * * * Authors: @@ -60,12 +60,10 @@ typedef struct _MAVPage { gboolean done; }MAVPage; - - typedef struct _MailAccountView { GtkVBox parent; - int type; - char *uri; + gint type; + const gchar *uri; MailViewFlags flags; /* Base class of MailChildView ends */ @@ -75,7 +73,7 @@ typedef struct _MailAccountView { MAVPage *pages[6]; struct _EAccount *original; GtkWidget *wpages[6]; - int current_page; + gint current_page; struct _EMAccountEditor *edit; MailAccountViewPrivate *priv; @@ -84,10 +82,11 @@ typedef struct _MailAccountView { typedef struct _MailAccountViewClass { GtkVBoxClass parent_class; - void (* view_close) (MailAccountView *); + void (* view_close) (MailAccountView *); } MailAccountViewClass; +GType mail_account_view_get_type (void); MailAccountView *mail_account_view_new (EAccount *account); GtkWidget * mail_account_view_get_tab_widget(MailAccountView *mcv); void mail_account_view_activate (MailAccountView *mcv, GtkWidget *tree, GtkWidget *folder_tree, GtkWidget *check_mail, GtkWidget *sort_by, gboolean act); -- cgit v1.2.3 From 33fc38811d408db702c4fee7fa2ba61bf7826dd1 Mon Sep 17 00:00:00 2001 From: Srinivasa Ragavan Date: Tue, 20 Apr 2010 10:52:01 +0530 Subject: Add Password field to the account setup and prestore password. --- capplet/settings/mail-account-view.h | 1 + 1 file changed, 1 insertion(+) (limited to 'capplet/settings/mail-account-view.h') diff --git a/capplet/settings/mail-account-view.h b/capplet/settings/mail-account-view.h index 618dce5361..7d5153172b 100644 --- a/capplet/settings/mail-account-view.h +++ b/capplet/settings/mail-account-view.h @@ -75,6 +75,7 @@ typedef struct _MailAccountView { GtkWidget *wpages[6]; gint current_page; struct _EMAccountEditor *edit; + GtkWidget *password; MailAccountViewPrivate *priv; } MailAccountView; -- cgit v1.2.3