Changeset 1139
- Timestamp:
- 11/12/06 12:17:05
- Files:
-
- trunk/libtinymail/tny-mime-part.c (modified) (3 diffs)
- trunk/libtinymailui/tny-mime-part-save-strategy.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail/tny-mime-part.c
r1138 r1139 148 148 * tny_mime_part_set_content_type: 149 149 * @self: a #TnyMimePart object 150 * @content _type: the content_type150 * @contenttype: the content_type 151 151 * 152 152 * Set the content type of a mime part. Formatted as type/subtype … … 154 154 **/ 155 155 void 156 tny_mime_part_set_content_type (TnyMimePart *self, const gchar *content _type)156 tny_mime_part_set_content_type (TnyMimePart *self, const gchar *contenttype) 157 157 { 158 158 #ifdef DEBUG … … 161 161 #endif 162 162 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); 164 164 return; 165 165 } trunk/libtinymailui/tny-mime-part-save-strategy.h
r1136 r1139 43 43 44 44 GType tny_mime_part_save_strategy_get_type (void); 45 45 46 void tny_mime_part_save_strategy_perform_save (TnyMimePartSaveStrategy *self, TnyMimePart *part); 46 47
