Changeset 3561

Show
Ignore:
Timestamp:
04/10/08 13:14:49
Author:
pvanhoof
Message:

2008-04-10 Philip Van Hoof <pvanhoof@gnome.org>

        • Fixed a glitch in Jose Dapena Paz's patch of yesterday
        • Added API documentation about cancelling
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r3559 r3561  
     12008-04-10  Philip Van Hoof <pvanhoof@gnome.org> 
     2 
     3        * Fixed a glitch in Jose Dapena Paz's patch of yesterday 
     4        * Added API documentation about cancelling 
     5 
    162008-04-09  Jose Dapena Paz  <jdapena@igalia.com> 
    27 
  • trunk/libtinymail-camel/tny-camel-account.c

    r3544 r3561  
    15891589 * guaranteed that the @callback will happen in the mainloop, if available. 
    15901590 * 
     1591 * This is a cancelable operation which means that if another cancelable  
     1592 * operation executes, this operation will be aborted. Being aborted means that 
     1593 * the callback will still be called, but with cancelled=TRUE. 
     1594 * 
     1595 * Only one instance of @tny_camel_account_set_online for folder @self can run 
     1596 * at the same time. If you call for another, the first will be aborted. This 
     1597 * means that it's callback will be called with cancelled=TRUE. If the  
     1598 * TnyDevice's online state changes while operation is taking place, the  
     1599 * behaviour is undefined. Although the @callback will always happen and in that 
     1600 * case with cancelled=TRUE. 
    15911601 **/ 
    15921602void  
  • trunk/libtinymail/tny-folder-store.c

    r3304 r3561  
    379379 * </programlisting></informalexample> 
    380380 * 
     381 * This is a cancelable operation which means that if another cancelable  
     382 * operation executes, this operation will be aborted. Being aborted means that 
     383 * the callback will still be called, but with cancelled=TRUE. 
     384 * 
    381385 * since: 1.0 
    382386 * audience: application-developer 
  • trunk/libtinymail/tny-folder.c

    r3518 r3561  
    601601 * is TRUE. 
    602602 * 
     603 * This is a cancelable operation which means that if another cancelable  
     604 * operation executes, this operation will be aborted. Being aborted means that 
     605 * the callback will still be called, but with cancelled=TRUE. 
     606 * 
    603607 * since: 1.0 
    604608 * audience: application-developer 
     
    871875 * </programlisting></informalexample> 
    872876 * 
     877 * This is a cancelable operation which means that if another cancelable  
     878 * operation executes, this operation will be aborted. Being aborted means that 
     879 * the callback will still be called, but with cancelled=TRUE. 
     880 * 
    873881 * since: 1.0 
    874882 * audience: application-developer 
     
    10981106 * with this API. You must only use instances that you got from  
    10991107 * tny_folder_get_headers(). 
     1108 * 
     1109 * This is a cancelable operation which means that if another cancelable  
     1110 * operation executes, this operation will be aborted. Being aborted means that 
     1111 * the callback will still be called, but with cancelled=TRUE. 
    11001112 * 
    11011113 * since: 1.0 
     
    13531365 * to a query object will be placed. This will introduce both an API and ABI  
    13541366 * breakage. 
     1367 * 
     1368 * Only one instance of @tny_folder_get_headers_async for folder @self can run 
     1369 * at the same time. If you call for another, the first will be aborted. This 
     1370 * means that it's callback will be called with cancelled=TRUE. 
    13551371 * 
    13561372 * since: 1.0