aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-msg-composer.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 81b38b8b31..92d71ec69e 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-26 Dan Winship <danw@helixcode.com>
+
+ * e-msg-composer.c (get_editor_text, set_editor_text): Update for
+ PersistStream changes
+
2000-05-25 Not Zed <NotZed@HelixCode.com>
* e-msg-composer.c (build_message): Use camel_data_wrapper_new
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index eab6dfca92..43440380f1 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -120,7 +120,7 @@ get_editor_text (BonoboWidget *editor)
g_assert (persist != CORBA_OBJECT_NIL);
stream = bonobo_stream_mem_create (NULL, 0, FALSE, TRUE);
- Bonobo_PersistStream_save (persist, (Bonobo_Stream)bonobo_object_corba_objref (BONOBO_OBJECT (stream)), &ev);
+ Bonobo_PersistStream_save (persist, (Bonobo_Stream)bonobo_object_corba_objref (BONOBO_OBJECT (stream)), "text/html", &ev);
if (ev._major != CORBA_NO_EXCEPTION) {
/* FIXME. Some error message. */
return NULL;
@@ -216,7 +216,7 @@ set_editor_text (BonoboWidget *editor, const char *text)
stream = bonobo_stream_mem_create ((char *)text, strlen (text),
TRUE, FALSE);
- Bonobo_PersistStream_load (persist, (Bonobo_Stream)bonobo_object_corba_objref (BONOBO_OBJECT (stream)), &ev);
+ Bonobo_PersistStream_load (persist, (Bonobo_Stream)bonobo_object_corba_objref (BONOBO_OBJECT (stream)), "text/html", &ev);
if (ev._major != CORBA_NO_EXCEPTION) {
/* FIXME. Some error message. */
return;
62001-10-175-8/+116 * don't write strings longer than they actually are.Larry Ewing2001-10-162-4/+12 * Remove the mark_seen timeout.Jeffrey Stedfast2001-10-162-3/+13 * conflict droppingsLarry Ewing2001-10-161-1/+0 * don't apply the body text in replys since we will just replace it anyway.Larry Ewing2001-10-162-1/+7 * Call mail_vfolder_shutdown.Jeffrey Stedfast2001-10-165-7/+57 * Proxy get-password call to main thread. (forget_password): same for52001-10-164-5/+182 * fixed a typoJeffrey Stedfast2001-10-161-1/+1 * Share more state between the parent and its clones, so that our multipleJon Trowbridge2001-10-152-29/+78 * Bad hacker! Don't implicitly assume that utf8 characters are one byte inJon Trowbridge2001-10-142-3/+16 * Don't emit a gtk warning if the composer creation fails.Dan Winship2001-10-142-3/+8 * Revert the change to remove the Score column until Chris can fix ETable soDan Winship2001-10-134-11/+70 * Fix race conditions in creating foldersIain Holmes2001-10-132-2/+12 * call e_passwords_init and e_passwords_shutdown.Chris Toshok2001-10-135-107/+102 * Convert URLS so we can get clickable links.Jeffrey Stedfast2001-10-132-1/+4 * removed Score stuff from the message-listJeffrey Stedfast2001-10-134-63/+15 * Store our listener id. (popup_info_free): Disconnect our listener when weJon Trowbridge2001-10-122-3/+14 * Listen for "destroy" events from the control, so that we don't leave strayJon Trowbridge2001-10-122-0/+25 * Added a checkbox for body indexing.12001-10-124-4/+85 * oops, and here tooJeffrey Stedfast2001-10-121-2/+2 * pass FALSE along to the add_message_attachments callJeffrey Stedfast2001-10-121-1/+1 * Attach the message attachments. Fixes bug #5439.Jeffrey Stedfast2001-10-122-1/+13 * No longer need to pass folder display name to storage update_folderDan Winship2001-10-126-588/+14 * blahJeffrey Stedfast2001-10-121-1/+0 * Make sure the service/storage are non-NULL.Jeffrey Stedfast2001-10-123-49/+61 * Fix up the logic here.Dan Winship2001-10-112-5/+8 * use new function to copy the attachments from the source message. ThisLarry Ewing2001-10-112-0/+7 * copy the data. We can't ref the byte array and we can't free it so we haveLarry Ewing2001-10-102-2/+10 * IF the source and destination folders are the same, do nothing. Oh, and02001-10-103-52/+89 * ref the part. (save_destroy_cb): new function to unref the part when weLarry Ewing2001-10-102-11/+69 * Ref folder so it hangs around till we're done with it.92001-10-102-0/+9 * Make sure the mail-display is non-NULL.Jeffrey Stedfast2001-10-102-1/+6 * Implement.92001-10-102-0/+23 * Create a chaqrset picker submenu in the View menu.Jeffrey Stedfast2001-10-108-30/+116 * Use gtk_signal_connect_while_alive here so e_gnome_dialog_parent_destroyedDan Winship2001-10-103-25/+60 * Oops.Jon Trowbridge2001-10-101-1/+1 * Revert the change to use e_msg_composer_new_with_message. That hasDan Winship2001-10-102-1/+8 * Update for folder_flags.Dan Winship2001-10-096-18/+23 * Write out the Bcc: header when applicable. Fixes bug #5823.Jon Trowbridge2001-10-092-2/+11 * Convert the htmlinfo into utf8. Fixes bug #11966.Jeffrey Stedfast2001-10-092-5/+11 * For mailstorage folders, connect to the control's "activate" signal, andDan Winship2001-10-092-17/+47 * Remove #ifndef MOVEMAIL_PATH code, since the setting of that variable hasDan Winship2001-10-092-19/+8 * Fix a merge-conflict leftover.Jeffrey Stedfast2001-10-062-4/+5 * reformatted the menu tables so they're a bit more bloody readable.52001-10-064-82/+66 * Add toggle button to config menu to turn the "confirm sending unwantedJon Trowbridge2001-10-065-0/+35 * New convenience function that not only sets the gnome-dialog's parentJeffrey Stedfast2001-10-062-28/+107 * added in the ssl-not-supported label that the code was referencing but which ...Jeffrey Stedfast2001-10-061-1/+28 * use e_msg_composer_new_with_message rather than e_msg_composer_new. ThisLarry Ewing2001-10-062-1/+8 * Turn on "uniform_row_height" argument.Christopher James Lahey2001-10-052-0/+9 * Show "nn sent" as total in sent folder, rather than just 'total'.42001-10-053-3/+11 * Do a better job of setting up the name. Also de-sensitise when we can't42001-10-052-2/+24 * Set the parent window as the fb. This fixes bug #11723. (filter_edit): DoJeffrey Stedfast2001-10-052-9/+28 * Ignore the signal if the radio button is not "on". This fixes bug #10532Jeffrey Stedfast2001-10-055-34/+42 * Fix so that an email address with no name is once again justDan Winship2001-10-052-6/+14 * Only create the folder when the shell has created it.Iain Holmes2001-10-053-3/+9 * If we're accessing a vfolder uri, then popup the vfolder editor instead of42001-10-054-1/+78 * Added some more NULL checks.Jeffrey Stedfast2001-10-052-2/+6 * Do the url fragment/path -> folder name hack. Removing vfolders from shell42001-10-052-27/+17 * Only build destination data if we have destination != NULL. Fixes crash of32001-10-042-1/+4 * Set 'to' -> 'recipient' data for search object. #6199.32001-10-042-0/+7 * Handle vtrash case, emit 'folder_created' event for the folder-cache to32001-10-043-8/+40 * Don't use the wax-seal icons for the pgp stuff anymore, use Jimmac's newJeffrey Stedfast2001-10-042-2/+7 * Dont wait for event to finish before returning. This could however mean we32001-10-043-1/+11 * If we have hide deleted set, then dont count deleted messages in the32001-10-042-1/+23 * If we have a fragment, override that, rather than the path. Fixes #5251.32001-10-042-1/+9 * add $BONOBO_GNOME_CFLAGS to make it work with latest BonoboRodrigo Moya2001-10-042-0/+6 * Pass an empty flags argument to mail_transfer_messages - destinationJeffrey Stedfast2001-10-036-6/+28 * Pass an empty flags argument to mail_tool_uri_to_folder.Jeffrey Stedfast2001-10-0314-29/+89 * Use `bonobo_ui_component_new_default()', not `bonobo_ui_component_new()'.Ettore Perazzoli2001-10-032-1/+7 * Make sure we aren't dealing with a pathological message w/o a From:Jon Trowbridge2001-10-02