Changeset 1138
- Timestamp:
- 11/12/06 12:05:23
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/docs/devel/reference/tmpl/tny-account.sgml (modified) (1 diff)
- trunk/libtinymail/tny-account.h (modified) (1 diff)
- trunk/libtinymail/tny-mime-part.c (modified) (3 diffs)
- trunk/libtinymailui-gtk/tny-gtk-attachment-mime-part-view.c (modified) (1 diff)
- trunk/libtinymailui/tny-mime-part-saver.c (modified) (3 diffs)
- trunk/libtinymailui/tny-mime-part-view.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r1136 r1138 2 2 3 3 * Corrected the MimePartSaveStrategy pattern method naming 4 * Various gtk-doc fixes 4 5 5 6 * This was a major API change trunk/docs/devel/reference/tmpl/tny-account.sgml
r914 r1138 214 214 215 215 @self: 216 @ get_forget_pass_func:216 @forget_pass_func: 217 217 218 218 trunk/libtinymail/tny-account.h
r1103 r1138 89 89 const gchar* tny_account_get_url_string (TnyAccount *self); 90 90 TnyGetPassFunc tny_account_get_pass_func (TnyAccount *self); 91 void tny_account_set_forget_pass_func (TnyAccount *self, TnyForgetPassFunc get_forget_pass_func);91 void tny_account_set_forget_pass_func (TnyAccount *self, TnyForgetPassFunc forget_pass_func); 92 92 TnyForgetPassFunc tny_account_get_forget_pass_func (TnyAccount *self); 93 93 trunk/libtinymail/tny-mime-part.c
r1010 r1138 392 392 * tny_mime_part_content_type_is: 393 393 * @self: a #TnyMimePart object 394 * @ contenttype: The content type in the string format type/subtype394 * @type: The content type in the string format type/subtype 395 395 * 396 396 * Efficiently checks whether a part is of type content_type. You can use things … … 422 422 **/ 423 423 gboolean 424 tny_mime_part_content_type_is (TnyMimePart *self, const gchar * contenttype)424 tny_mime_part_content_type_is (TnyMimePart *self, const gchar *type) 425 425 { 426 426 #ifdef DEBUG … … 429 429 #endif 430 430 431 return TNY_MIME_PART_GET_IFACE (self)->content_type_is_func (self, contenttype);431 return TNY_MIME_PART_GET_IFACE (self)->content_type_is_func (self, type); 432 432 } 433 433 trunk/libtinymailui-gtk/tny-gtk-attachment-mime-part-view.c
r1100 r1138 120 120 /** 121 121 * tny_gtk_attachment_mime_part_view_new: 122 * @ save_strategy: The save strategy to use122 * @iview: A #TnyGtkAttachListModel instance 123 123 * 124 124 * Return value: a new #TnyMimePartView instance implemented for Gtk+ 125 125 **/ 126 126 TnyMimePartView* 127 tny_gtk_attachment_mime_part_view_new (TnyGtkAttachListModel *i model)127 tny_gtk_attachment_mime_part_view_new (TnyGtkAttachListModel *iview) 128 128 { 129 129 TnyGtkAttachmentMimePartView *self = g_object_new (TNY_TYPE_GTK_ATTACHMENT_MIME_PART_VIEW, NULL); 130 130 131 g_object_ref (G_OBJECT (i model));132 TNY_GTK_ATTACHMENT_MIME_PART_VIEW_GET_PRIVATE (self)->imodel = i model;131 g_object_ref (G_OBJECT (iview)); 132 TNY_GTK_ATTACHMENT_MIME_PART_VIEW_GET_PRIVATE (self)->imodel = iview; 133 133 134 134 return TNY_MIME_PART_VIEW (self); trunk/libtinymailui/tny-mime-part-saver.c
r1136 r1138 121 121 * tny_mime_part_saver_save: 122 122 * @self: A #TnyMimePartSaver instance 123 * @ mime_part: A #TnyMimePart instace123 * @part: A #TnyMimePart instace 124 124 * 125 125 * Saves @mime_part using the save strategy … … 127 127 **/ 128 128 void 129 tny_mime_part_saver_save (TnyMimePartSaver *self, TnyMimePart * mime_part)129 tny_mime_part_saver_save (TnyMimePartSaver *self, TnyMimePart *part) 130 130 { 131 131 #ifdef DEBUG … … 134 134 #endif 135 135 136 TNY_MIME_PART_SAVER_GET_IFACE (self)->save_func (self, mime_part);136 TNY_MIME_PART_SAVER_GET_IFACE (self)->save_func (self, part); 137 137 return; 138 138 } trunk/libtinymailui/tny-mime-part-view.c
r1010 r1138 48 48 * tny_mime_part_view_get_part: 49 49 * @self: A #TnyMimePartView instance 50 * @mime_part: A #TnyMimePart instace51 50 * 52 51 * Get mime part of the view @self. The return value must be unreferenced after
