diff options
author | Jeremy Wise <jwise@src.gnome.org> | 2000-08-09 11:19:08 +0800 |
---|---|---|
committer | Jeremy Wise <jwise@src.gnome.org> | 2000-08-09 11:19:08 +0800 |
commit | f4a16f3c8d42b164813c7273c1991fd81958e1f0 (patch) | |
tree | 0be9d9b6d6ad66357f199141b88d13bcbd43f423 /mail/mail-config.h | |
parent | 520a2e89aa4461e14a4893b0369d70091bff7cb3 (diff) | |
download | gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.tar gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.tar.gz gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.tar.bz2 gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.tar.lz gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.tar.xz gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.tar.zst gsoc2013-evolution-f4a16f3c8d42b164813c7273c1991fd81958e1f0.zip |
Basic framework for saving the size of the vpaned in the main message view
svn path=/trunk/; revision=4623
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r-- | mail/mail-config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h index a212a676be..df46ae4356 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -48,6 +48,7 @@ typedef struct MailConfigService *transport; gboolean send_html; gboolean thread_list; + gint paned_size; } MailConfig; /* Identities */ @@ -74,7 +75,9 @@ MailConfigService *mail_config_get_default_source (void); MailConfigService *mail_config_get_transport (void); gboolean mail_config_send_html (void); gboolean mail_config_thread_list (void); +gint mail_config_paned_size (void); void mail_config_set_thread_list (gboolean value); +void mail_config_set_paned_size (gint size); MailConfig *mail_config_fetch (void); #endif |