Changeset 89

Show
Ignore:
Timestamp:
04/25/08 12:58:43
Author:
pvanhoof
Message:

Bugfix

Files:

Legend:

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

    r78 r89  
    291291        TnyList *accounts = TNY_LIST (tny_gtk_account_list_model_new ()); 
    292292 
    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 
    295295        gtk_combo_box_set_model (priv->accounts_combo, GTK_TREE_MODEL (accounts)); 
    296296        gtk_combo_box_set_active (priv->accounts_combo, 0); 
  • trunk/src/tmut-account-store.c

    r84 r89  
    468468                                if (TNY_IS_STORE_ACCOUNT (account)) 
    469469                                        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) { 
    471473                                if (TNY_IS_TRANSPORT_ACCOUNT (account)) 
    472474                                        tny_list_prepend (list, (GObject*) account);