comparison libpurple/plugins/buddynote.c @ 21086:8c9aad9479c0

Removed request stuff - now on pidgin-request-ui-hint
author Gabriel Schulhof <nix@go-nix.ca>
date Wed, 10 Oct 2007 22:57:51 +0000
parents 285bb637a2b7
children cab348e39751
comparison
equal deleted inserted replaced
21077:488796f5ba33 21086:8c9aad9479c0
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 {