org.guifications.plugins: 5747964c20cad5b60a0aad2212b1cb139dae036d
grim at guifications.org
grim at guifications.org
Wed Apr 16 21:30:11 CDT 2008
-----------------------------------------------------------------
Revision: 5747964c20cad5b60a0aad2212b1cb139dae036d
Ancestor: 68dd90e2903587b389eabdda66ac49486226cbba
Author: grim at guifications.org
Date: 2008-04-13T23:49:56
Branch: org.guifications.plugins
Modified files:
convbadger/convbadger.c
ChangeLog:
consistency is good
-----------------------------------------------------------------
This revision's diffstat output:
convbadger.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
-------------- next part --------------
============================================================
--- convbadger/convbadger.c cfe4681100eab2170379e4f9988da4a19850b43a
+++ convbadger/convbadger.c 89e360a850f5dbdfc58781541c65116763436256
@@ -105,7 +105,7 @@ static void
* Callbacks
*****************************************************************************/
static void
-convbadger_conv_created_cb(PurpleConversation *conv, gpointer data) {
+conv_badger_conv_created_cb(PurpleConversation *conv, gpointer data) {
PidginConversation *pconv = PIDGIN_CONVERSATION(conv);
PidginWindow *win = pidgin_conv_get_window(pconv);
@@ -113,11 +113,11 @@ static void
}
static void
-convbadger_conv_destroyed_cb(PurpleConversation *conv, gpointer data) {
+conv_badger_conv_destroyed_cb(PurpleConversation *conv, gpointer data) {
}
static void
-convbadger_conv_switched_cb(PurpleConversation *conv, gpointer data) {
+conv_badger_conv_switched_cb(PurpleConversation *conv, gpointer data) {
PidginConversation *pconv = PIDGIN_CONVERSATION(conv);
PidginWindow *win = pidgin_conv_get_window(pconv);
@@ -135,13 +135,13 @@ plugin_load(PurplePlugin *plugin) {
NULL, NULL);
purple_signal_connect(conv_handle, "conversation-created", plugin,
- PURPLE_CALLBACK(convbadger_conv_created_cb), NULL);
+ PURPLE_CALLBACK(conv_badger_conv_created_cb), NULL);
purple_signal_connect(conv_handle, "deleting-conversation", plugin,
- PURPLE_CALLBACK(convbadger_conv_destroyed_cb), NULL);
+ PURPLE_CALLBACK(conv_badger_conv_destroyed_cb), NULL);
purple_signal_connect(pidgin_conversations_get_handle(),
"conversation-switched", plugin,
- PURPLE_CALLBACK(convbadger_conv_switched_cb), NULL);
+ PURPLE_CALLBACK(conv_badger_conv_switched_cb), NULL);
return TRUE;
}
More information about the Plugins-commits
mailing list