Changeset 3170
- Timestamp:
- 12/21/07 13:13:45
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-folder.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3167 r3170 1 2007-12-21 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Experimental support for NAMESPACE in IMAP accounts 4 * Better handling of LIST and LSUB requests 5 * Code robustness 6 * Changed the account item of a folder to be hard referenced in stead 7 of weakly 8 1 9 2007-12-20 Alberto Garcia Gonzalez <agarcia@igalia.com> 2 10 11 * libtinymail-camel/camel-lite/camel/providers/imap/camel- 12 imap-command.c: (camel_imap_command_response): Set an initial 13 value to variable len 3 14 * libtinymail/tny-store-acount.c: 4 15 (tny_store_account_find_folder): Fixed assertion to allow trunk/libtinymail-camel/tny-camel-folder.c
r3154 r3170 1314 1314 } 1315 1315 1316 static void1317 notify_account_del (gpointer user_data, GObject *account)1318 {1319 TnyCamelFolderPriv *priv = TNY_CAMEL_FOLDER_GET_PRIVATE (user_data);1320 priv->account = NULL;1321 }1322 1316 1323 1317 void … … 1329 1323 1330 1324 if (priv->account) 1331 g_object_weak_unref (G_OBJECT (priv->account), notify_account_del, self); 1332 priv->account = account; 1333 g_object_weak_ref (G_OBJECT (priv->account), notify_account_del, self); 1325 g_object_unref (priv->account); 1326 priv->account = TNY_ACCOUNT (g_object_ref (account)); 1334 1327 1335 1328 if (priv->store) … … 5431 5424 5432 5425 if (priv->account) 5433 g_object_ weak_unref (G_OBJECT (priv->account), notify_account_del, self);5426 g_object_unref (priv->account); 5434 5427 5435 5428 if (priv->parent)
