Track cmanske's editor backend API change to EDT_PasteHTML().

git-svn-id: svn://10.0.0.236/trunk@7982 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akkana%netscape.com 1998-08-13 23:14:34 +00:00
parent a43dcf60dd
commit d733007663

View File

@ -4775,7 +4775,7 @@ fe_primary_sel_cb(Widget widget, XtPointer cdata, Atom *sel, Atom *type,
"fe_primary_sel_cb::[ PasteHTML ][ %d ]\n",
pData->data_len);
#endif
EDT_PasteHTML(pData->context, pData->data);
EDT_PasteHTML(pData->context, pData->data, 0);
}
else {
if (pData->html_len > 0) {
@ -4845,7 +4845,7 @@ fe_EditorPastePrimarySel(MWContext* context, Time timestamp)
#ifdef DEBUG_rhess
fprintf(stderr, "fe_EditorPastePrimarySel::[ DATA ]\n");
#endif
EDT_PasteHTML(context, data);
EDT_PasteHTML(context, data, 0);
}
else {
if (html_len > 0) {
@ -4994,7 +4994,7 @@ fe_EditorPaste(MWContext* context, Time timestamp)
#ifdef DEBUG_rhess
fprintf (stderr, "fe_EditorPaste::[ XFE_CCP_DATA ]\n");
#endif
rv = (EDT_PasteHTML(context, clip_data) == EDT_COP_OK);
rv = (EDT_PasteHTML(context, clip_data, 0) == EDT_COP_OK);
XP_FREE(clip_data);
} else if (clip_name == XFE_CCP_HTML) {
#ifdef DEBUG_rhess