Changeset 89
- Timestamp:
- 04/25/08 12:58:43
- Files:
-
- trunk/src/tmut-account-manager.c (modified) (1 diff)
- trunk/src/tmut-account-store.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/tmut-account-manager.c
r78 r89 291 291 TnyList *accounts = TNY_LIST (tny_gtk_account_list_model_new ()); 292 292 293 tny_account_store_get_accounts (account_store, accounts, 294 TNY_ACCOUNT_STORE_STORE_ACCOUNTS); 293 tny_account_store_get_accounts (account_store, accounts, TNY_ACCOUNT_STORE_BOTH); 294 295 295 gtk_combo_box_set_model (priv->accounts_combo, GTK_TREE_MODEL (accounts)); 296 296 gtk_combo_box_set_active (priv->accounts_combo, 0); trunk/src/tmut-account-store.c
r84 r89 468 468 if (TNY_IS_STORE_ACCOUNT (account)) 469 469 tny_list_prepend (list, (GObject*) account); 470 } else if (types == TNY_ACCOUNT_STORE_BOTH || types == TNY_ACCOUNT_STORE_TRANSPORT_ACCOUNTS) { 470 } 471 472 if (types == TNY_ACCOUNT_STORE_BOTH || types == TNY_ACCOUNT_STORE_TRANSPORT_ACCOUNTS) { 471 473 if (TNY_IS_TRANSPORT_ACCOUNT (account)) 472 474 tny_list_prepend (list, (GObject*) account);
