comparison src/gtkimhtml.c @ 8907:00138e366ef8

[gaim-migrate @ 9677] " Fixes a few warnings on 64bit machines. Also fixes yahoo auth on 64bit machines which would have taken me awhile if marv didn't point me in the right direction. I've applied to my local 32bit copy and everything seems to be working fine." --Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 08 May 2004 23:34:30 +0000
parents 6c98b883580a
children 87e171358001
comparison
equal deleted inserted replaced
8906:0d3a68e36132 8907:00138e366ef8
551 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, sel); 551 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, sel);
552 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &end, ins); 552 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &end, ins);
553 primary = gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY) == clipboard; 553 primary = gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY) == clipboard;
554 554
555 if (info == TARGET_HTML) { 555 if (info == TARGET_HTML) {
556 int len; 556 gsize len;
557 char *selection; 557 char *selection;
558 GString *str = g_string_new(NULL); 558 GString *str = g_string_new(NULL);
559 if (primary) { 559 if (primary) {
560 text = gtk_imhtml_get_markup_range(imhtml, &start, &end); 560 text = gtk_imhtml_get_markup_range(imhtml, &start, &end);
561 } else 561 } else