Changeset 1418
- Timestamp:
- 01/16/07 11:35:34
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-camel/tny-camel-store-account.c
r1383 r1418 178 178 179 179 /* Get store */ 180 g_static_rec_mutex_lock (apriv->service_lock); 180 181 /* g_static_rec_mutex_lock (apriv->service_lock); 181 182 store = camel_session_get_store ((CamelSession*) apriv->session, 182 183 apriv->url_string, &ex); 183 g_static_rec_mutex_unlock (apriv->service_lock); 184 g_static_rec_mutex_unlock (apriv->service_lock); */ 185 186 store = CAMEL_STORE (apriv->service); 184 187 185 188 if (!camel_store_supports_subscriptions (store)) … … 295 298 } 296 299 300 /* Disco store ? */ 301 297 302 (*parent_class->finalize) (object); 298 303 … … 317 322 g_assert (TNY_IS_CAMEL_FOLDER (folder)); 318 323 324 /* store = camel_session_get_store ((CamelSession*) apriv->session, 325 apriv->url_string, &ex); */ 326 327 /* g_static_rec_mutex_lock (apriv->service_lock); 319 328 store = camel_session_get_store ((CamelSession*) apriv->session, 320 329 apriv->url_string, &ex); 330 g_static_rec_mutex_unlock (apriv->service_lock); */ 331 332 store = CAMEL_STORE (apriv->service); 321 333 322 334 if (camel_exception_is_set (&ex)) … … 384 396 g_assert (CAMEL_IS_SESSION (apriv->session)); 385 397 398 /* store = camel_session_get_store ((CamelSession*) apriv->session, 399 apriv->url_string, &ex); */ 400 401 /* g_static_rec_mutex_lock (apriv->service_lock); 386 402 store = camel_session_get_store ((CamelSession*) apriv->session, 387 403 apriv->url_string, &ex); 404 g_static_rec_mutex_unlock (apriv->service_lock); */ 405 406 store = CAMEL_STORE (apriv->service); 388 407 389 408 if (camel_exception_is_set (&ex)) … … 452 471 g_assert (TNY_IS_FOLDER_STORE_QUERY (query)); 453 472 473 /* store = camel_session_get_store ((CamelSession*) apriv->session, 474 apriv->url_string, &ex); */ 475 476 /* g_static_rec_mutex_lock (apriv->service_lock); 454 477 store = camel_session_get_store ((CamelSession*) apriv->session, 455 478 apriv->url_string, &ex); 479 g_static_rec_mutex_unlock (apriv->service_lock); */ 480 481 store = CAMEL_STORE (apriv->service); 456 482 457 483 if (camel_exception_is_set (&ex)) trunk/libtinymailui-gtk/tny-gtk-folder-store-tree-model.c
r1285 r1418 212 212 { 213 213 TnyGtkFolderStoreTreeModel *self = g_object_new (TNY_TYPE_GTK_FOLDER_STORE_TREE_MODEL, NULL); 214 self->is_async = async;214 self->is_async = FALSE; 215 215 if (query) self->query = g_object_ref (G_OBJECT (query)); 216 216 return GTK_TREE_MODEL (self);
