Mercurial > pidgin
comparison libpurple/plugins/buddynote.c @ 21076:b84655373d7b
propagate from branch 'im.pidgin.pidgin' (head 017296ee954fb91349806c809983c916842603da)
to branch 'org.maemo.garage.pidgin.pidgin.dialog-transience' (head ce668a77429a79bf1404086e8f5e7faf7df25856)
author | Gabriel Schulhof <nix@go-nix.ca> |
---|---|
date | Mon, 08 Oct 2007 16:06:39 +0000 |
parents | 285bb637a2b7 |
children | 8c9aad9479c0 |
comparison
equal
deleted
inserted
replaced
20811:368d79355aba | 21076:b84655373d7b |
---|---|
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(node, _("Notes"), | 46 purple_request_input_with_hint(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 node); | 53 "buddy", 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 { |