comparison libpurple/protocols/novell/novell.c @ 16439:08db93bbd798

Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
author Evan Schoenberg <evan.s@dreskin.net>
date Thu, 26 Apr 2007 12:25:49 +0000
parents 9e1b2223a5b1
children a338acd14365
comparison
equal deleted inserted replaced
16435:a46a0362dc34 16439:08db93bbd798
1909 parms = g_slist_append(parms, nm_event_get_conference(event)); 1909 parms = g_slist_append(parms, nm_event_get_conference(event));
1910 1910
1911 /* Prompt the user */ 1911 /* Prompt the user */
1912 gc = purple_account_get_connection(user->client_data); 1912 gc = purple_account_get_connection(user->client_data);
1913 purple_request_action(gc, title, primary, secondary, 1913 purple_request_action(gc, title, primary, secondary,
1914 PURPLE_DEFAULT_ACTION_NONE, parms, 2, 1914 PURPLE_DEFAULT_ACTION_NONE,
1915 purple_connection_get_account(gc), name, NULL,
1916 parms, 2,
1915 _("Yes"), G_CALLBACK(_join_conference_cb), 1917 _("Yes"), G_CALLBACK(_join_conference_cb),
1916 _("No"), G_CALLBACK(_reject_conference_cb)); 1918 _("No"), G_CALLBACK(_reject_conference_cb));
1917 1919
1918 g_free(primary); 1920 g_free(primary);
1919 } 1921 }