Changeset 1861

Show
Ignore:
Timestamp:
04/29/07 11:20:41
Author:
murrayc
Message:

2007-04-29 Murray Cumming <murrayc@murrayc.com>

        • libtinymail-maemo/tny-maemo-account-store.c:

(tny_maemo_account_store_add_store_account),
(tny_maemo_account_store_add_transport_account):
Correct NY_ACCOUNT_STORE typos to TNY_ACCOUNT_STORE, to avoid an undefined
symbol build error.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r1860 r1861  
     12007-04-29  Murray Cumming  <murrayc@murrayc.com> 
     2 
     3        * libtinymail-maemo/tny-maemo-account-store.c: 
     4        (tny_maemo_account_store_add_store_account), 
     5        (tny_maemo_account_store_add_transport_account): 
     6        Correct NY_ACCOUNT_STORE typos to TNY_ACCOUNT_STORE, to avoid an undefined  
     7        symbol build error. 
     8 
    192007-04-29  Murray Cumming  <murrayc@murrayc.com> 
    210 
  • trunk/libtinymail-maemo/tny-maemo-account-store.c

    r1855 r1861  
    500500 
    501501        tny_maemo_account_store_notify_remove (TNY_ACCOUNT_STORE (self)); 
    502         tny_maemo_account_store_add_account (NY_ACCOUNT_STORE (self), TNY_ACCOUNT (account), "store"); 
    503         tny_maemo_account_store_notify_add (NY_ACCOUNT_STORE (self)); 
     502        tny_maemo_account_store_add_account (TNY_ACCOUNT_STORE (self), TNY_ACCOUNT (account), "store"); 
     503        tny_maemo_account_store_notify_add (TNY_ACCOUNT_STORE (self)); 
    504504 
    505505        g_signal_emit (self, tny_account_store_signals [TNY_ACCOUNT_STORE_ACCOUNT_INSERTED], 0, account); 
     
    513513        TnyMaemoAccountStorePriv *priv = TNY_MAEMO_ACCOUNT_STORE_GET_PRIVATE (self); 
    514514 
    515         tny_maemo_account_store_notify_remove (NY_ACCOUNT_STORE (self)); 
    516         tny_maemo_account_store_add_account (NY_ACCOUNT_STORE (self), TNY_ACCOUNT (account), "transport"); 
    517         tny_maemo_account_store_notify_add (NY_ACCOUNT_STORE (self)); 
     515        tny_maemo_account_store_notify_remove (TNY_ACCOUNT_STORE (self)); 
     516        tny_maemo_account_store_add_account (TNY_ACCOUNT_STORE (self), TNY_ACCOUNT (account), "transport"); 
     517        tny_maemo_account_store_notify_add (TNY_ACCOUNT_STORE (self)); 
    518518 
    519519        g_signal_emit (self, tny_account_store_signals [TNY_ACCOUNT_STORE_ACCOUNT_INSERTED], 0, account);