summaryrefslogtreecommitdiff
path: root/pidgin/plugins/gestures/gestures.c
diff options
context:
space:
mode:
authorDaniel Atallah <datallah@pidgin.im>2007-02-14 02:35:35 +0000
committerDaniel Atallah <datallah@pidgin.im>2007-02-14 02:35:35 +0000
commitbb38769b14790c51ec6d1c4577ffa1e0e1a76a1d (patch)
treed777227aa1d397f4257f67e19f9c4ed2124a476f /pidgin/plugins/gestures/gestures.c
parent9588b288cbd6435adf3d0a15ba541f90098e75da (diff)
downloadpidgin-bb38769b14790c51ec6d1c4577ffa1e0e1a76a1d.tar.gz
Some more pidgininfication
Diffstat (limited to 'pidgin/plugins/gestures/gestures.c')
-rw-r--r--pidgin/plugins/gestures/gestures.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pidgin/plugins/gestures/gestures.c b/pidgin/plugins/gestures/gestures.c
index bca7c935c5..db7c1294eb 100644
--- a/pidgin/plugins/gestures/gestures.c
+++ b/pidgin/plugins/gestures/gestures.c
@@ -43,7 +43,7 @@ stroke_close(GtkWidget *widget, void *data)
conv = (GaimConversation *)data;
/* Double-check */
- if (!GAIM_IS_GTK_CONVERSATION(conv))
+ if (!PIDGIN_IS_PIDGIN_CONVERSATIONON(conv))
return;
gtkconv = PIDGIN_CONVERSATION(conv);
@@ -144,7 +144,7 @@ attach_signals(GaimConversation *conv)
static void
new_conv_cb(GaimConversation *conv)
{
- if (GAIM_IS_GTK_CONVERSATION(conv))
+ if (PIDGIN_IS_PIDGIN_CONVERSATIONON(conv))
attach_signals(conv);
}
@@ -181,7 +181,7 @@ plugin_load(GaimPlugin *plugin)
for (l = gaim_get_conversations(); l != NULL; l = l->next) {
conv = (GaimConversation *)l->data;
- if (!GAIM_IS_GTK_CONVERSATION(conv))
+ if (!PIDGIN_IS_PIDGIN_CONVERSATIONON(conv))
continue;
attach_signals(conv);
@@ -204,7 +204,7 @@ plugin_unload(GaimPlugin *plugin)
for (l = gaim_get_conversations(); l != NULL; l = l->next) {
conv = (GaimConversation *)l->data;
- if (!GAIM_IS_GTK_CONVERSATION(conv))
+ if (!PIDGIN_IS_PIDGIN_CONVERSATION(conv))
continue;
gtkconv = PIDGIN_CONVERSATION(conv);