Changeset 2068
- Timestamp:
- 06/01/07 11:02:27
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-folder.c (modified) (1 diff)
- trunk/libtinymail-maemo/tny-maemo-account-store.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2067 r2068 1 2007-06-01 Murray Cumming <murrayc@murrayc.com> 2 3 * libtinymail-camel/tny-camel-folder.c: 4 (tny_camel_folder_copy_shared): Initialize some variables 5 to avoid warnings. 6 * libtinymail-maemo/tny-maemo-account-store.c: 7 (tny_maemo_account_store_add_store_account), 8 (tny_maemo_account_store_add_transport_account): 9 Remove unused priv variables, to avoid warnings. 10 1 11 2007-05-31 Murray Cumming <murrayc@murrayc.com> 2 12 trunk/libtinymail-camel/tny-camel-folder.c
r2062 r2068 1808 1808 { 1809 1809 TnyCamelFolderPriv *priv = TNY_CAMEL_FOLDER_GET_PRIVATE (self); 1810 TnyFolder *retval ;1810 TnyFolder *retval = NULL; 1811 1811 gboolean succeeded = FALSE, tried=FALSE; 1812 TnyAccount *a, *b ;1812 TnyAccount *a, *b = NULL; 1813 1813 GError *nerr = NULL; 1814 1814 GError *terr = NULL; trunk/libtinymail-maemo/tny-maemo-account-store.c
r2015 r2068 44 44 #include <tny-camel-store-account.h> 45 45 #include <tny-camel-transport-account.h> 46 #include <tny-camel-imap-store-account.h> 47 #include <tny-camel-nntp-store-account.h> 48 #include <tny-camel-pop-store-account.h> 46 49 #include <tny-session-camel.h> 47 50 #include <tny-maemo-device.h> … … 522 525 tny_maemo_account_store_add_store_account (TnyMaemoAccountStore *self, TnyStoreAccount *account) 523 526 { 524 TnyMaemoAccountStorePriv *priv = TNY_MAEMO_ACCOUNT_STORE_GET_PRIVATE (self);525 526 527 tny_maemo_account_store_notify_remove (TNY_ACCOUNT_STORE (self)); 527 528 tny_maemo_account_store_add_account (TNY_ACCOUNT_STORE (self), TNY_ACCOUNT (account), "store"); … … 536 537 tny_maemo_account_store_add_transport_account (TnyAccountStore *self, TnyTransportAccount *account) 537 538 { 538 TnyMaemoAccountStorePriv *priv = TNY_MAEMO_ACCOUNT_STORE_GET_PRIVATE (self);539 540 539 tny_maemo_account_store_notify_remove (TNY_ACCOUNT_STORE (self)); 541 540 tny_maemo_account_store_add_account (TNY_ACCOUNT_STORE (self), TNY_ACCOUNT (account), "transport");
