Changeset 3632

Show
Ignore:
Timestamp:
04/25/08 13:47:06
Author:
pvanhoof
Message:

Fixed some types

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libtinymail-camel/tny-camel-transport-account.c

    r3631 r3632  
    266266/** 
    267267 * tny_camel_transport_account_get_from: 
    268  * @self: a #TnyTransportAccount 
     268 * @self: a #TnyCamelTransportAccount 
    269269 *  
    270270 * Get the from of @self. Returned value must not be freed. 
     
    273273 **/ 
    274274const gchar * 
    275 tny_camel_transport_account_get_from (TnyTransportAccount *self) 
     275tny_camel_transport_account_get_from (TnyCamelTransportAccount *self) 
    276276{ 
    277277        TnyCamelTransportAccountPriv *priv = TNY_CAMEL_TRANSPORT_ACCOUNT_GET_PRIVATE (self); 
     
    281281/** 
    282282 * tny_camel_transport_account_set_from: 
    283  * @self: a #TnyTransportAccount 
     283 * @self: a #TnyCamelTransportAccount 
    284284 * @from: (null-ok): a string or NULL 
    285285 *  
     
    287287 **/ 
    288288void 
    289 tny_camel_transport_account_set_from (TnyTransportAccount *self, const gchar *from) 
     289tny_camel_transport_account_set_from (TnyCamelTransportAccount *self, const gchar *from) 
    290290{ 
    291291        TnyCamelTransportAccountPriv *priv = TNY_CAMEL_TRANSPORT_ACCOUNT_GET_PRIVATE (self); 
  • trunk/libtinymail-camel/tny-camel-transport-account.h

    r3631 r3632  
    5555TnyTransportAccount* tny_camel_transport_account_new (void); 
    5656 
    57 const gchar *tny_camel_transport_account_get_from (TnyTransportAccount *self); 
    58 void tny_camel_transport_account_set_from (TnyTransportAccount *self, const gchar *from); 
     57const gchar *tny_camel_transport_account_get_from (TnyCamelTransportAccount *self); 
     58void tny_camel_transport_account_set_from (TnyCamelTransportAccount *self, const gchar *from); 
    5959 
    6060G_END_DECLS