Changeset 676
- Timestamp:
- 08/01/06 12:20:39
- Files:
-
- trunk/Makefile.am (modified) (2 diffs)
- trunk/libtinymail-gnome-desktop/tny-account-store.c (modified) (1 diff)
- trunk/libtinymail-test/tny-list-iface-test.c (modified) (2 diffs)
- trunk/libtinymailui-mozembed/tny-moz-embed-msg-view.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile.am
r675 r676 1 SUBDIRS = m4 libtinymail libtinymailui 1 SUBDIRS = m4 2 3 SUBDIRS += libtinymail 4 SUBDIRS += libtinymailui 2 5 3 6 if BUILD_GNOME 4 SUBDIRS += libtinymail-gnomevfs 7 SUBDIRS += libtinymail-gnomevfs 5 8 endif 6 9 7 SUBDIRS += libtinymailui-gtk 10 SUBDIRS += libtinymailui-gtk 8 11 9 12 if BUILD_MOZEMBED 10 SUBDIRS += libtinymailui-mozembed 13 SUBDIRS += libtinymailui-mozembed 11 14 endif 12 15 13 SUBDIRS += $(PLATFORMDIR) libtinymail-camel tinymail docs 16 SUBDIRS += $(PLATFORMDIR) libtinymail-camel tinymail docs 14 17 15 18 if BUILD_UNITTESTS … … 17 20 endif 18 21 19 SUBDIRS += bindings po 22 SUBDIRS += bindings po 20 23 21 24 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc trunk/libtinymail-gnome-desktop/tny-account-store.c
r652 r676 485 485 per_account_get_pass_func); 486 486 487 tny_list_iface_prepend (list, account);487 tny_list_iface_prepend (list, (GObject*)account); 488 488 } 489 489 trunk/libtinymail-test/tny-list-iface-test.c
r553 r676 47 47 TnyIteratorIface *iterator; 48 48 gchar *item; 49 49 /* TODO: redo this test using a GOBject 50 50 tny_list_iface_append (iface, "2"); 51 51 tny_list_iface_append (iface, "3"); … … 72 72 73 73 g_object_unref (G_OBJECT (iterator)); 74 */ 74 75 75 76 } trunk/libtinymailui-mozembed/tny-moz-embed-msg-view.c
r559 r676 118 118 while (next) 119 119 { 120 TnyMsgMimePartIface *part = tny_iterator_iface_current (iterator);120 TnyMsgMimePartIface *part = (TnyMsgMimePartIface*)tny_iterator_iface_current (iterator); 121 121 122 122 if (!have_html && G_LIKELY (tny_msg_mime_part_iface_content_type_is (part, "text/plain")))
