Changeset 1857

Show
Ignore:
Timestamp:
04/28/07 13:33:32
Author:
pvanhoof
Message:

Doc updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/devel/reference/tmpl/tny-account-store.sgml

    r1854 r1857  
    8080@accounts_reloaded:  
    8181@get_accounts_func:  
    82 @add_store_account_func:  
    83 @add_transport_account_func:  
    8482@get_cache_dir_func:  
    8583@get_device_func:  
     
    111109@list:  
    112110@types:  
    113  
    114  
    115 <!-- ##### FUNCTION tny_account_store_add_store_account ##### --> 
    116 <para> 
    117  
    118 </para> 
    119  
    120 @self:  
    121 @account:  
    122  
    123  
    124 <!-- ##### FUNCTION tny_account_store_add_transport_account ##### --> 
    125 <para> 
    126  
    127 </para> 
    128  
    129 @self:  
    130 @account:  
    131111 
    132112 
  • trunk/docs/devel/reference/tmpl/tny-gnome-account-store.sgml

    r911 r1857  
    4242 
    4343 
     44<!-- ##### FUNCTION tny_gnome_account_store_add_store_account ##### --> 
     45<para> 
     46 
     47</para> 
     48 
     49@self:  
     50@account:  
     51 
     52 
     53<!-- ##### FUNCTION tny_gnome_account_store_add_transport_account ##### --> 
     54<para> 
     55 
     56</para> 
     57 
     58@self:  
     59@account:  
     60 
     61 
  • trunk/docs/devel/reference/tmpl/tny-send-queue.sgml

    r1854 r1857  
    4040</para> 
    4141 
     42@:  
     43@:  
     44@:  
     45@: 
     46 
    4247@tnysendqueue: the object which received the signal. 
    4348@arg1:  
     
    4954 
    5055</para> 
     56 
     57@:  
     58@:  
     59@:  
     60@: 
    5161 
    5262@tnysendqueue: the object which received the signal. 
  • trunk/docs/devel/reference/tmpl/tny-shared.sgml

    r1854 r1857  
    4040</para> 
    4141 
    42 @tnyaccountstore: the object which received the signal. 
    43 @arg1:  
     42@:  
     43@:  
    4444 
    4545<!-- ##### SIGNAL TnyAccountStore::account-inserted ##### --> 
     
    4848</para> 
    4949 
    50 @tnyaccountstore: the object which received the signal. 
    51 @arg1:  
     50@:  
     51@:  
    5252 
    5353<!-- ##### SIGNAL TnyAccountStore::account-removed ##### --> 
     
    5656</para> 
    5757 
    58 @tnyaccountstore: the object which received the signal. 
    59 @arg1:  
     58@:  
     59@:  
    6060 
    6161<!-- ##### SIGNAL TnyAccountStore::accounts-reloaded ##### --> 
     
    6464</para> 
    6565 
    66 @tnyaccountstore: the object which received the signal. 
     66@:  
    6767 
    6868<!-- ##### STRUCT TnyAccountStoreIface ##### --> 
     
    7777@accounts_reloaded:  
    7878@get_accounts_func:  
    79 @add_store_account_func:  
    80 @add_transport_account_func:  
    8179@get_cache_dir_func:  
    8280@get_device_func:  
     
    299297</para> 
    300298 
    301 @tnydevice: the object which received the signal. 
    302 @arg1:  
     299@:  
     300@:  
    303301 
    304302<!-- ##### STRUCT TnyDeviceIface ##### --> 
     
    545543</para> 
    546544 
    547 @:  
    548 @:  
    549 @:  
    550 @:  
     545@tnysendqueue: the object which received the signal. 
     546@arg1:  
     547@arg2:  
     548@arg3:  
    551549 
    552550<!-- ##### SIGNAL TnySendQueue::msg-sent ##### --> 
     
    555553</para> 
    556554 
    557 @:  
    558 @:  
    559 @:  
    560 @:  
     555@tnysendqueue: the object which received the signal. 
     556@arg1:  
     557@arg2:  
     558@arg3:  
    561559 
    562560<!-- ##### STRUCT TnySendQueueIface ##### --> 
  • trunk/tests/shared/account-store.c

    r1711 r1857  
    225225 
    226226 
    227 static void 
    228 tny_test_account_store_add_store_account (TnyAccountStore *self, TnyStoreAccount *account) 
    229 { 
    230         return; 
    231 } 
    232  
    233 static void 
    234 tny_test_account_store_add_transport_account (TnyAccountStore *self, TnyTransportAccount *account) 
    235 { 
    236         return; 
    237 } 
    238  
    239227static TnyDevice* 
    240228tny_test_account_store_get_device (TnyAccountStore *self) 
     
    254242        klass->get_cache_dir_func = tny_test_account_store_get_cache_dir; 
    255243        klass->alert_func = tny_test_account_store_alert; 
    256         klass->add_store_account_func = tny_test_account_store_add_store_account; 
    257         klass->add_transport_account_func = tny_test_account_store_add_transport_account; 
    258244        klass->get_device_func = tny_test_account_store_get_device; 
    259245