Changeset 3561
- Timestamp:
- 04/10/08 13:14:49
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-account.c (modified) (1 diff)
- trunk/libtinymail/tny-folder-store.c (modified) (1 diff)
- trunk/libtinymail/tny-folder.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3559 r3561 1 2008-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 1 6 2008-04-09 Jose Dapena Paz <jdapena@igalia.com> 2 7 trunk/libtinymail-camel/tny-camel-account.c
r3544 r3561 1589 1589 * guaranteed that the @callback will happen in the mainloop, if available. 1590 1590 * 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. 1591 1601 **/ 1592 1602 void trunk/libtinymail/tny-folder-store.c
r3304 r3561 379 379 * </programlisting></informalexample> 380 380 * 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 * 381 385 * since: 1.0 382 386 * audience: application-developer trunk/libtinymail/tny-folder.c
r3518 r3561 601 601 * is TRUE. 602 602 * 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 * 603 607 * since: 1.0 604 608 * audience: application-developer … … 871 875 * </programlisting></informalexample> 872 876 * 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 * 873 881 * since: 1.0 874 882 * audience: application-developer … … 1098 1106 * with this API. You must only use instances that you got from 1099 1107 * 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. 1100 1112 * 1101 1113 * since: 1.0 … … 1353 1365 * to a query object will be placed. This will introduce both an API and ABI 1354 1366 * 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. 1355 1371 * 1356 1372 * since: 1.0
