Changeset 762
- Timestamp:
- 08/23/06 16:16:31
- Files:
-
- trunk/libtinymailui/tny-msg-view-iface.c (modified) (1 diff)
- trunk/libtinymailui/tny-platform-factory-iface.c (modified) (5 diffs)
- trunk/libtinymailui/tny-save-strategy-iface.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymailui/tny-msg-view-iface.c
r715 r762 29 29 * @header: a #TnyHeaderIface instance or NULL 30 30 * 31 * Set the view to display th at the message was unavailable31 * Set the view to display the fact that the message was unavailable 32 32 * 33 33 **/ trunk/libtinymailui/tny-platform-factory-iface.c
r520 r762 1 /* libtinymail - The Tiny Mail base library1 /* libtinymailui - The Tiny Mail user interface library 2 2 * Copyright (C) 2006-2007 Philip Van Hoof <pvanhoof@gnome.org> 3 3 * … … 18 18 */ 19 19 20 /* The reason why this type is defined in libtinymailui rather than libtinymail 21 is because the factory also returns types defined in libtinymailui */ 22 20 23 #include <config.h> 21 24 … … 26 29 * @self: a TnyPlatformFactoryIface object 27 30 * 31 * When implementing a platform-specific library, you need to implement this 32 * method. You must simply return a new #TnyAccountStoreIface instance. 33 * 28 34 * Return value: a #TnyAccountStoreIface instance 35 * 29 36 **/ 30 37 TnyAccountStoreIface* … … 43 50 * @self: a TnyPlatformFactoryIface object 44 51 * 52 * When implementing a platform-specific library, you need to implement this 53 * method. You must simply return a new #TnyDeviceIface instance. 54 * 45 55 * Return value: a #TnyDeviceIface instance 56 * 46 57 **/ 47 58 TnyDeviceIface* … … 60 71 * @self: a TnyPlatformFactoryIface object 61 72 * 73 * When implementing a platform-specific library, you need to implement this 74 * method. You must simply return a new #TnyMsgViewIface instance. 75 * 62 76 * Return value: a #TnyMsgViewIface instance 77 * 63 78 **/ 64 79 TnyMsgViewIface* trunk/libtinymailui/tny-save-strategy-iface.c
r710 r762 24 24 /** 25 25 * tny_save_strategy_iface_save: 26 * @self: A TnySaveStrategyIface instance 26 * @self: A #TnySaveStrategyIface instance 27 * @part: The #TnyMimePartIface instance that must be saved 27 28 * 28 * Performs the saving 29 * Performs the saving of a mime part 29 30 * 30 31 **/
