Changeset 3824

Show
Ignore:
Timestamp:
11/21/08 18:04:04
Author:
mbonnin
Message:

Add some documentation about the behaviour of tny_folder_refresh_async()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r3823 r3824  
    88        * libtinymailui-gtkhtml/tny-gtk-html-mime-part-view.c: added missing 
    99        initialization 
     10 
     112008-11-21  Martin Bonnin  <martinbonnin@gmail.com> 
     12  
     13        Add some documentation tny_folder_store_refresh_async() 
    1014 
    11152008-11-21  Martin Bonnin  <martinbonnin@gmail.com> 
  • trunk/libtinymail/tny-folder-store.c

    r3787 r3824  
    411411 
    412412 
     413/** 
     414 * tny_folder_store_refresh_async: 
     415 * @self: a #TnyFolderStore 
     416 * @callback: (null-ok): a #TnyFolderStoreCallback or NULL 
     417 * @status_callback: (null-ok): a #TnyStatusCallback or NULL 
     418 * @user_data: (null-ok): user data that will be passed to the callbacks 
     419 * 
     420 * Refresh @self and callback when finished.  
     421 * 
     422 * While the refresh takes place, it's possible that event observers of @self 
     423 * will get notified of new folders. 
     424 * 
     425 * since: 1.0 
     426 * audience: application-developer 
     427 **/ 
    413428void tny_folder_store_refresh_async (TnyFolderStore *self, TnyFolderStoreCallback callback, TnyStatusCallback status_callback, gpointer user_data) 
    414429{