diff plugins/ticker/ticker.c @ 5587:1c55b1540e18

[gaim-migrate @ 5991] The rest of the plugins compile. Well, the default ones. notify.c is no longer compiled by default. I don't know for sure what we're doing with this, but I didn't want to fix it :) committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 31 May 2003 06:59:58 +0000
parents f82c251c8300
children eeba9205dd0f
line wrap: on
line diff
--- a/plugins/ticker/ticker.c	Sat May 31 06:50:47 2003 +0000
+++ b/plugins/ticker/ticker.c	Sat May 31 06:59:58 2003 +0000
@@ -187,7 +187,7 @@
 	}
 }
 
-void signon_cb(struct gaim_connection *gc, char *who) {
+void signon_cb(GaimConnection *gc, char *who) {
 	struct buddy *b = gaim_find_buddy(gc->account, who);
 	if(buddy_ticker_find_buddy(b))
 		buddy_ticker_set_pixmap(b);
@@ -195,7 +195,7 @@
 		buddy_ticker_add_buddy(b);
 }
 
-void signoff_cb(struct gaim_connection *gc) {
+void signoff_cb(GaimConnection *gc) {
 	if (!connections) {
 		while(tickerbuds) {
 			g_free(tickerbuds->data);
@@ -217,7 +217,7 @@
 	}
 }
 
-void buddy_signoff_cb(struct gaim_connection *gc, char *who) {
+void buddy_signoff_cb(GaimConnection *gc, char *who) {
 	struct buddy *b = gaim_find_buddy(gc->account, who);
 
 	buddy_ticker_remove_buddy(b);
@@ -225,7 +225,7 @@
 		gtk_widget_hide(tickerwindow);
 }
 
-void away_cb(struct gaim_connection *gc, char *who) {
+void away_cb(GaimConnection *gc, char *who) {
 	struct buddy *b = gaim_find_buddy(gc->account, who);
 	if(buddy_ticker_find_buddy(b))
 		buddy_ticker_set_pixmap(b);