Changeset 3632
- Timestamp:
- 04/25/08 13:47:06
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-camel/tny-camel-transport-account.c
r3631 r3632 266 266 /** 267 267 * tny_camel_transport_account_get_from: 268 * @self: a #Tny TransportAccount268 * @self: a #TnyCamelTransportAccount 269 269 * 270 270 * Get the from of @self. Returned value must not be freed. … … 273 273 **/ 274 274 const gchar * 275 tny_camel_transport_account_get_from (Tny TransportAccount *self)275 tny_camel_transport_account_get_from (TnyCamelTransportAccount *self) 276 276 { 277 277 TnyCamelTransportAccountPriv *priv = TNY_CAMEL_TRANSPORT_ACCOUNT_GET_PRIVATE (self); … … 281 281 /** 282 282 * tny_camel_transport_account_set_from: 283 * @self: a #Tny TransportAccount283 * @self: a #TnyCamelTransportAccount 284 284 * @from: (null-ok): a string or NULL 285 285 * … … 287 287 **/ 288 288 void 289 tny_camel_transport_account_set_from (Tny TransportAccount *self, const gchar *from)289 tny_camel_transport_account_set_from (TnyCamelTransportAccount *self, const gchar *from) 290 290 { 291 291 TnyCamelTransportAccountPriv *priv = TNY_CAMEL_TRANSPORT_ACCOUNT_GET_PRIVATE (self); trunk/libtinymail-camel/tny-camel-transport-account.h
r3631 r3632 55 55 TnyTransportAccount* tny_camel_transport_account_new (void); 56 56 57 const gchar *tny_camel_transport_account_get_from (Tny TransportAccount *self);58 void tny_camel_transport_account_set_from (Tny TransportAccount *self, const gchar *from);57 const gchar *tny_camel_transport_account_get_from (TnyCamelTransportAccount *self); 58 void tny_camel_transport_account_set_from (TnyCamelTransportAccount *self, const gchar *from); 59 59 60 60 G_END_DECLS
