Changeset 79

Show
Ignore:
Timestamp:
04/15/08 22:07:55
Author:
pvanhoof
Message:

Removed some old code

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/tmut-account-store.c

    r76 r79  
    548548 
    549549TnyAccountStore* 
    550 tmut_account_store_new (TnyAccountStore *decorated) 
     550tmut_account_store_new (void) 
    551551{ 
    552552        TMutAccountStore *self = g_object_new (TMUT_TYPE_ACCOUNT_STORE, NULL); 
  • trunk/src/tmut-account-store.h

    r76 r79  
    5151 
    5252GType tmut_account_store_get_type (void); 
    53 TnyAccountStore* tmut_account_store_new (TnyAccountStore *decorated); 
     53TnyAccountStore* tmut_account_store_new (void); 
    5454 
    5555void tmut_account_store_create_account (TMutAccountStore *self,  
  • trunk/src/tmut-platform-factory.c

    r75 r79  
    8080        TnyAccountStore *decorated; 
    8181 
    82 #ifdef GNOMEDESKTOP 
    83         decorated = tny_gnome_account_store_new (); 
    84 #endif 
    85  
    86 #ifdef GPE 
    87         decorated = tny_gpe_account_store_new (); 
    88 #endif 
    89  
    90 #ifdef MAEMO 
    91         decorated = tny_maemo_account_store_new (); 
    92 #endif 
    93  
    94 #ifdef OLPC 
    95         decorated = tny_olpc_account_store_new (); 
    96 #endif 
    97  
    98         return tmut_account_store_new (decorated); 
     82        return tmut_account_store_new (); 
    9983} 
    10084