Changeset 70
- Timestamp:
- 01/13/08 12:22:14
- Files:
-
- trunk/src/tmut-menu-view.c (modified) (1 diff)
- trunk/src/tmut-msg-creator.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/tmut-menu-view.c
r61 r70 577 577 tny_folder_store_query_add_item (query, NULL, 578 578 TNY_FOLDER_STORE_QUERY_OPTION_SUBSCRIBED); 579 model = tny_gtk_folder_store_tree_model_new (query); 579 580 model = tny_gtk_folder_store_tree_model_new (NULL); 580 581 tny_gtk_folder_store_tree_model_append (TNY_GTK_FOLDER_STORE_TREE_MODEL (model), 581 582 TNY_FOLDER_STORE (account), tny_account_get_name (account)); trunk/src/tmut-msg-creator.c
r65 r70 164 164 TnyMimePart *msg_part = tny_camel_mime_part_new (); 165 165 166 tny_mime_part_construct _from_stream (msg_part, info->stream, "text/plain");166 tny_mime_part_construct (msg_part, info->stream, "text/plain", "7bit"); 167 167 tny_mime_part_add_part (TNY_MIME_PART (info->msg), msg_part); 168 168 g_object_unref (msg_part); … … 176 176 g_object_unref (iter); 177 177 } else 178 tny_mime_part_construct _from_stream (TNY_MIME_PART (info->msg), info->stream, "text/plain");178 tny_mime_part_construct (TNY_MIME_PART (info->msg), info->stream, "text/plain", "7bit"); 179 179 180 180 tny_send_queue_add (info->send_queue, info->msg, NULL);
