comparison libpurple/protocols/mxit/actions.c @ 31744:bcc22eeaf3fa

It's no longer necessary to have a separate Plugin version for the MXit prpl. Just use the libpurple version.
author andrew.victor@mxit.com
date Wed, 26 Jan 2011 08:36:08 +0000
parents 6d6ac5720853
children ff2a8a839dbd
comparison
equal deleted inserted replaced
31743:121ebd2eaea3 31744:bcc22eeaf3fa
312 */ 312 */
313 static void mxit_cb_action_about( PurplePluginAction* action ) 313 static void mxit_cb_action_about( PurplePluginAction* action )
314 { 314 {
315 char version[256]; 315 char version[256];
316 316
317 g_snprintf( version, sizeof( version ), "MXit libPurple Plugin v%s\n" 317 g_snprintf( version, sizeof( version ),
318 "MXit Client Protocol v%i.%i\n\n" 318 "MXit Client Protocol v%i.%i\n\n"
319 "Author:\nPieter Loubser\n\n" 319 "Author:\nPieter Loubser\n\n"
320 "Contributors:\nAndrew Victor\n\n" 320 "Contributors:\nAndrew Victor\n\n"
321 "Testers:\nBraeme Le Roux\n\n", 321 "Testers:\nBraeme Le Roux\n\n",
322 MXIT_PLUGIN_VERSION,
323 ( MXIT_CP_PROTO_VESION / 10 ), ( MXIT_CP_PROTO_VESION % 10 ) ); 322 ( MXIT_CP_PROTO_VESION / 10 ), ( MXIT_CP_PROTO_VESION % 10 ) );
324 323
325 mxit_popup( PURPLE_NOTIFY_MSG_INFO, _( "About" ), version ); 324 mxit_popup( PURPLE_NOTIFY_MSG_INFO, _( "About" ), version );
326 } 325 }
327 326