Changeset 762

Show
Ignore:
Timestamp:
08/23/06 16:16:31
Author:
pvanhoof
Message:

API simplification and docs update

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libtinymailui/tny-msg-view-iface.c

    r715 r762  
    2929 * @header: a #TnyHeaderIface instance or NULL 
    3030 * 
    31  * Set the view to display that the message was unavailable 
     31 * Set the view to display the fact that the message was unavailable 
    3232 *  
    3333 **/ 
  • trunk/libtinymailui/tny-platform-factory-iface.c

    r520 r762  
    1 /* libtinymail - The Tiny Mail base library 
     1/* libtinymailui - The Tiny Mail user interface library 
    22 * Copyright (C) 2006-2007 Philip Van Hoof <pvanhoof@gnome.org> 
    33 * 
     
    1818 */ 
    1919 
     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    
    2023#include <config.h> 
    2124 
     
    2629 * @self: a TnyPlatformFactoryIface object 
    2730 * 
     31 * When implementing a platform-specific library, you need to implement this 
     32 * method. You must simply return a new #TnyAccountStoreIface instance. 
     33 * 
    2834 * Return value: a #TnyAccountStoreIface instance 
     35 * 
    2936 **/ 
    3037TnyAccountStoreIface* 
     
    4350 * @self: a TnyPlatformFactoryIface object 
    4451 * 
     52 * When implementing a platform-specific library, you need to implement this 
     53 * method. You must simply return a new #TnyDeviceIface instance. 
     54 * 
    4555 * Return value: a #TnyDeviceIface instance 
     56 * 
    4657 **/ 
    4758TnyDeviceIface* 
     
    6071 * @self: a TnyPlatformFactoryIface object 
    6172 * 
     73 * When implementing a platform-specific library, you need to implement this 
     74 * method. You must simply return a new #TnyMsgViewIface instance. 
     75 * 
    6276 * Return value: a #TnyMsgViewIface instance 
     77 * 
    6378 **/ 
    6479TnyMsgViewIface* 
  • trunk/libtinymailui/tny-save-strategy-iface.c

    r710 r762  
    2424/** 
    2525 * tny_save_strategy_iface_save: 
    26  * @self: A TnySaveStrategyIface instance 
     26 * @self: A #TnySaveStrategyIface instance 
     27 * @part: The #TnyMimePartIface instance that must be saved 
    2728 * 
    28  * Performs the saving 
     29 * Performs the saving of a mime part 
    2930 *  
    3031 **/