diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-13 07:35:45 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-13 07:35:45 +0800 |
commit | ecae5285eae30188123aa34ba026c57cac1b9483 (patch) | |
tree | 84676a53cad209b47d2f7102c1c158f3ecd57849 /mail/component-factory.c | |
parent | d46c9da28df091da9dca931d611f7421330bc6c0 (diff) | |
download | gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.tar gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.tar.gz gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.tar.bz2 gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.tar.lz gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.tar.xz gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.tar.zst gsoc2013-evolution-ecae5285eae30188123aa34ba026c57cac1b9483.zip |
Added a cast.
2000-12-12 Christopher James Lahey <clahey@helixcode.com>
* component-factory.c (create_view): Added a cast.
* mail-summary.c: Added #include "mail-summary.h". Commented out
folder_free, summary_free, and view_destroy_cb since they're not
used.
(do_changed): Added a cast.
(create_summary_view): Changed some types so that casting would be
easier.
* session.c (mail_session_remember_password): Added a cast.
svn path=/trunk/; revision=6956
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 7cf16745bb..e67537bb9f 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -94,7 +94,7 @@ create_view (EvolutionShellComponent *shell_component, } if (!gtk_object_get_data (GTK_OBJECT (storage), "connected")) - mail_do_scan_subfolders (store, storage); + mail_do_scan_subfolders (CAMEL_STORE(store), storage); camel_object_unref (CAMEL_OBJECT (store)); control = folder_browser_factory_new_control ("", corba_shell); |