comparison libpurple/plugins/buddynote.c @ 21099:51cf02dbdb0e

disapproval of revision 'c484d979c4fda4433a9633ff8b69bd8a395c9479'
author Richard Laager <rlaager@wiktel.com>
date Fri, 16 Nov 2007 23:30:03 +0000
parents cab348e39751
children fcb848b2d669
comparison
equal deleted inserted replaced
21095:cab348e39751 21099:51cf02dbdb0e
41 { 41 {
42 const char *note; 42 const char *note;
43 43
44 note = purple_blist_node_get_string(node, "notes"); 44 note = purple_blist_node_get_string(node, "notes");
45 45
46 purple_request_input_with_hint(node, _("Notes"), 46 purple_request_input(node, _("Notes"),
47 _("Enter your notes below..."), 47 _("Enter your notes below..."),
48 NULL, 48 NULL,
49 note, TRUE, FALSE, "html", 49 note, TRUE, FALSE, "html",
50 _("Save"), G_CALLBACK(do_it_cb), 50 _("Save"), G_CALLBACK(do_it_cb),
51 _("Cancel"), G_CALLBACK(dont_do_it_cb), 51 _("Cancel"), G_CALLBACK(dont_do_it_cb),
52 NULL, NULL, NULL, 52 NULL, NULL, NULL,
53 "buddy", node); 53 node);
54 } 54 }
55 55
56 static void 56 static void
57 buddynote_extended_menu_cb(PurpleBlistNode *node, GList **m) 57 buddynote_extended_menu_cb(PurpleBlistNode *node, GList **m)
58 { 58 {