Changeset 1138

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

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r1136 r1138  
    22 
    33        * Corrected the MimePartSaveStrategy pattern method naming 
     4        * Various gtk-doc fixes 
    45 
    56        * This was a major API change 
  • trunk/docs/devel/reference/tmpl/tny-account.sgml

    r914 r1138  
    214214 
    215215@self:  
    216 @get_forget_pass_func:  
     216@forget_pass_func:  
    217217 
    218218 
  • trunk/libtinymail/tny-account.h

    r1103 r1138  
    8989const gchar* tny_account_get_url_string (TnyAccount *self); 
    9090TnyGetPassFunc tny_account_get_pass_func (TnyAccount *self); 
    91 void tny_account_set_forget_pass_func (TnyAccount *self, TnyForgetPassFunc get_forget_pass_func); 
     91void tny_account_set_forget_pass_func (TnyAccount *self, TnyForgetPassFunc forget_pass_func); 
    9292TnyForgetPassFunc tny_account_get_forget_pass_func (TnyAccount *self); 
    9393 
  • trunk/libtinymail/tny-mime-part.c

    r1010 r1138  
    392392 * tny_mime_part_content_type_is: 
    393393 * @self: a #TnyMimePart object 
    394  * @contenttype: The content type in the string format type/subtype 
     394 * @type: The content type in the string format type/subtype 
    395395 *  
    396396 * Efficiently checks whether a part is of type content_type. You can use things 
     
    422422 **/ 
    423423gboolean 
    424 tny_mime_part_content_type_is (TnyMimePart *self, const gchar *contenttype) 
     424tny_mime_part_content_type_is (TnyMimePart *self, const gchar *type) 
    425425{ 
    426426#ifdef DEBUG 
     
    429429#endif 
    430430 
    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); 
    432432} 
    433433 
  • trunk/libtinymailui-gtk/tny-gtk-attachment-mime-part-view.c

    r1100 r1138  
    120120/** 
    121121 * tny_gtk_attachment_mime_part_view_new: 
    122  * @save_strategy: The save strategy to us
     122 * @iview: A #TnyGtkAttachListModel instanc
    123123 * 
    124124 * Return value: a new #TnyMimePartView instance implemented for Gtk+ 
    125125 **/ 
    126126TnyMimePartView* 
    127 tny_gtk_attachment_mime_part_view_new (TnyGtkAttachListModel *imodel
     127tny_gtk_attachment_mime_part_view_new (TnyGtkAttachListModel *iview
    128128{ 
    129129        TnyGtkAttachmentMimePartView *self = g_object_new (TNY_TYPE_GTK_ATTACHMENT_MIME_PART_VIEW, NULL); 
    130130 
    131         g_object_ref (G_OBJECT (imodel)); 
    132         TNY_GTK_ATTACHMENT_MIME_PART_VIEW_GET_PRIVATE (self)->imodel = imodel
     131        g_object_ref (G_OBJECT (iview)); 
     132        TNY_GTK_ATTACHMENT_MIME_PART_VIEW_GET_PRIVATE (self)->imodel = iview
    133133 
    134134        return TNY_MIME_PART_VIEW (self); 
  • trunk/libtinymailui/tny-mime-part-saver.c

    r1136 r1138  
    121121 * tny_mime_part_saver_save: 
    122122 * @self: A #TnyMimePartSaver instance 
    123  * @mime_part: A #TnyMimePart instace 
     123 * @part: A #TnyMimePart instace 
    124124 * 
    125125 * Saves @mime_part using the save strategy 
     
    127127 **/ 
    128128void 
    129 tny_mime_part_saver_save (TnyMimePartSaver *self, TnyMimePart *mime_part) 
     129tny_mime_part_saver_save (TnyMimePartSaver *self, TnyMimePart *part) 
    130130{ 
    131131#ifdef DEBUG 
     
    134134#endif 
    135135 
    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); 
    137137        return; 
    138138} 
  • trunk/libtinymailui/tny-mime-part-view.c

    r1010 r1138  
    4848 * tny_mime_part_view_get_part: 
    4949 * @self: A #TnyMimePartView instance 
    50  * @mime_part: A #TnyMimePart instace 
    5150 * 
    5251 * Get mime part of the view @self. The return value must be unreferenced after