Changeset 1139

Show
Ignore:
Timestamp:
11/12/06 12:17:05
Author:
pvanhoof
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libtinymail/tny-mime-part.c

    r1138 r1139  
    148148 * tny_mime_part_set_content_type: 
    149149 * @self: a #TnyMimePart object 
    150  * @content_type: the content_type  
     150 * @contenttype: the content_type  
    151151 *  
    152152 * Set the content type of a mime part. Formatted as type/subtype 
     
    154154 **/ 
    155155void 
    156 tny_mime_part_set_content_type (TnyMimePart *self, const gchar *content_type) 
     156tny_mime_part_set_content_type (TnyMimePart *self, const gchar *contenttype) 
    157157{ 
    158158#ifdef DEBUG 
     
    161161#endif 
    162162 
    163         TNY_MIME_PART_GET_IFACE (self)->set_content_type_func (self, content_type); 
     163        TNY_MIME_PART_GET_IFACE (self)->set_content_type_func (self, contenttype); 
    164164        return; 
    165165} 
  • trunk/libtinymailui/tny-mime-part-save-strategy.h

    r1136 r1139  
    4343 
    4444GType tny_mime_part_save_strategy_get_type (void); 
     45 
    4546void tny_mime_part_save_strategy_perform_save (TnyMimePartSaveStrategy *self, TnyMimePart *part); 
    4647