Changeset 79
- Timestamp:
- 04/15/08 22:07:55
- Files:
-
- trunk/src/tmut-account-store.c (modified) (1 diff)
- trunk/src/tmut-account-store.h (modified) (1 diff)
- trunk/src/tmut-platform-factory.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/tmut-account-store.c
r76 r79 548 548 549 549 TnyAccountStore* 550 tmut_account_store_new ( TnyAccountStore *decorated)550 tmut_account_store_new (void) 551 551 { 552 552 TMutAccountStore *self = g_object_new (TMUT_TYPE_ACCOUNT_STORE, NULL); trunk/src/tmut-account-store.h
r76 r79 51 51 52 52 GType tmut_account_store_get_type (void); 53 TnyAccountStore* tmut_account_store_new ( TnyAccountStore *decorated);53 TnyAccountStore* tmut_account_store_new (void); 54 54 55 55 void tmut_account_store_create_account (TMutAccountStore *self, trunk/src/tmut-platform-factory.c
r75 r79 80 80 TnyAccountStore *decorated; 81 81 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 (); 99 83 } 100 84
