comparison plugins/notify.c @ 6982:083d1e4a9c78

[gaim-migrate @ 7538] This is Mr. Holland's Opus. And by Mr. Holland I mean Robot101. He rewrote the coreish IM image support so that the binary data gets ripped out in the prpl and put in an imgstore instead of just being passed in the same huge as char string as the actual message. This is good because it's prpl agnostic, or something. It also means we don't have a silly length of "-1" with pretty much every send or receive IM function. It should be crash free, bug free, and memleak free, but additional testing is always a good thing. If you like good stuff then you'll love this patch. But don't take my word for it--ba dun dunt! committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 27 Sep 2003 19:17:21 +0000
parents 996a182029f7
children bf630f7dfdcd
comparison
equal deleted inserted replaced
6981:abd3c684da31 6982:083d1e4a9c78
512 512
513 static gboolean 513 static gboolean
514 options_entry_cb(GtkWidget *widget, GdkEventFocus *evt, gpointer data) 514 options_entry_cb(GtkWidget *widget, GdkEventFocus *evt, gpointer data)
515 { 515 {
516 if (data == NULL) 516 if (data == NULL)
517 return; 517 return FALSE;
518 518
519 if (!strcmp(data, "method_string")) { 519 if (!strcmp(data, "method_string")) {
520 gaim_prefs_set_string("/plugins/gtk/X11/notify/title_string", gtk_entry_get_text(GTK_ENTRY(widget))); 520 gaim_prefs_set_string("/plugins/gtk/X11/notify/title_string", gtk_entry_get_text(GTK_ENTRY(widget)));
521 } 521 }
522 522