aboutsummaryrefslogtreecommitdiffstats
path: root/capplet/settings/mail-account-view.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-04-01 05:42:14 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-04-06 08:59:44 +0800
commitda7aacb87cd1d5d635f367928994c19af8c764f6 (patch)
tree388f68d35a953b38fea583c4030249d6f33a30f9 /capplet/settings/mail-account-view.h
parent8580bd4a42a98f0171e9524d69385c9868c7c07a (diff)
downloadgsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.tar
gsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.tar.gz
gsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.tar.bz2
gsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.tar.lz
gsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.tar.xz
gsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.tar.zst
gsoc2013-evolution-da7aacb87cd1d5d635f367928994c19af8c764f6.zip
Capplet cleanups.
Diffstat (limited to 'capplet/settings/mail-account-view.h')
-rw-r--r--capplet/settings/mail-account-view.h13
1 files changed, 6 insertions, 7 deletions
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 <http://www.gnu.org/licenses/>
+ * License along with the program; if not, see <http://www.gnu.org/licenses/>
*
*
* 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);