comparison src/gtkimhtml.c @ 10345:2e01c503aa4f

[gaim-migrate @ 11556] Patch 1078151 from Felipe Contreras to fix some more MSN bugs: "User Dislpay messages, and other less used, did not set an slpcall, so the callback that should not be called, was called (in some very special cases)." ... "Here it goes the real real one, as far as I can tell. Cleaning + organizing + documentation + hard bug fix = big patch." -- Felipe Contreras I also fixed drag-and-drop to conversation window file transfers (which I had broken when I fixed some other dnd thing), made the debug output of the autoreconnect plugin more useful, and stopped the message notification plugin notifying you for messages sent by ignored users. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 11 Dec 2004 20:01:58 +0000
parents ec140184437b
children 0c020a10d5da
comparison
equal deleted inserted replaced
10344:5976491e07a7 10345:2e01c503aa4f
1348 gtk_imhtml_insert_link(imhtml, mark, link, link); 1348 gtk_imhtml_insert_link(imhtml, mark, link, link);
1349 } else if (link=='\0') { 1349 } else if (link=='\0') {
1350 /* Ignore blank lines */ 1350 /* Ignore blank lines */
1351 } else { 1351 } else {
1352 /* Special reasons, aka images being put in via other tag, etc. */ 1352 /* Special reasons, aka images being put in via other tag, etc. */
1353 /* ... don't pretend we handled it if we didn't */
1354 gtk_drag_finish(dc, FALSE, FALSE, t);
1355 return;
1353 } 1356 }
1354 } 1357 }
1355 break; 1358 break;
1356 case GTK_IMHTML_DRAG_HTML: 1359 case GTK_IMHTML_DRAG_HTML:
1357 { 1360 {