comparison libpurple/plugins/offlinemsg.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
155 char *ask; 155 char *ask;
156 ask = g_strdup_printf(_("\"%s\" is currently offline. Do you want to save the " 156 ask = g_strdup_printf(_("\"%s\" is currently offline. Do you want to save the "
157 "rest of the messages in a pounce and automatically send them " 157 "rest of the messages in a pounce and automatically send them "
158 "when \"%s\" logs back in?"), who, who); 158 "when \"%s\" logs back in?"), who, who);
159 159
160 purple_request_action_with_hint(handle, _("Offline Message"), ask, 160 purple_request_action(handle, _("Offline Message"), ask,
161 _("You can edit/delete the pounce from the `Buddy Pounces' dialog"), 161 _("You can edit/delete the pounce from the `Buddy Pounces' dialog"),
162 1, 162 1,
163 offline->account, offline->who, offline->conv, 163 offline->account, offline->who, offline->conv,
164 "buddy", offline, 2, 164 offline, 2,
165 _("Yes"), record_pounce, 165 _("Yes"), record_pounce,
166 _("No"), cancel_poune); 166 _("No"), cancel_poune);
167 g_free(ask); 167 g_free(ask);
168 } 168 }
169 } 169 }