Changeset 676

Show
Ignore:
Timestamp:
08/01/06 12:20:39
Author:
pvanhoof
Message:

Bugfixes and improvements for gnome-build

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Makefile.am

    r675 r676  
    1 SUBDIRS = m4 libtinymail libtinymailui 
     1SUBDIRS = m4  
     2 
     3SUBDIRS += libtinymail  
     4SUBDIRS += libtinymailui  
    25 
    36if BUILD_GNOME 
    4 SUBDIRS += libtinymail-gnomevfs 
     7SUBDIRS += libtinymail-gnomevfs  
    58endif 
    69 
    7 SUBDIRS += libtinymailui-gtk 
     10SUBDIRS += libtinymailui-gtk  
    811 
    912if BUILD_MOZEMBED 
    10 SUBDIRS += libtinymailui-mozembed 
     13SUBDIRS += libtinymailui-mozembed  
    1114endif 
    1215 
    13 SUBDIRS += $(PLATFORMDIR) libtinymail-camel tinymail docs 
     16SUBDIRS += $(PLATFORMDIR) libtinymail-camel tinymail docs  
    1417 
    1518if BUILD_UNITTESTS 
     
    1720endif 
    1821 
    19 SUBDIRS += bindings po 
     22SUBDIRS += bindings po  
    2023 
    2124DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc 
  • trunk/libtinymail-gnome-desktop/tny-account-store.c

    r652 r676  
    485485                                per_account_get_pass_func); 
    486486 
    487                         tny_list_iface_prepend (list, account); 
     487                        tny_list_iface_prepend (list, (GObject*)account); 
    488488                } 
    489489 
  • trunk/libtinymail-test/tny-list-iface-test.c

    r553 r676  
    4747        TnyIteratorIface *iterator; 
    4848        gchar *item; 
    49  
     49/* TODO: redo this test using a GOBject  
    5050        tny_list_iface_append (iface, "2"); 
    5151        tny_list_iface_append (iface, "3"); 
     
    7272 
    7373        g_object_unref (G_OBJECT (iterator)); 
     74*/ 
    7475 
    7576} 
  • trunk/libtinymailui-mozembed/tny-moz-embed-msg-view.c

    r559 r676  
    118118        while (next) 
    119119        { 
    120                 TnyMsgMimePartIface *part = tny_iterator_iface_current (iterator); 
     120                TnyMsgMimePartIface *part = (TnyMsgMimePartIface*)tny_iterator_iface_current (iterator); 
    121121 
    122122                if (!have_html && G_LIKELY (tny_msg_mime_part_iface_content_type_is (part, "text/plain")))