diff plugins/iconaway.c @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents 8b24e4d1e082
children 059d95c67cda
line wrap: on
line diff
--- a/plugins/iconaway.c	Mon Jun 02 21:14:50 2003 +0000
+++ b/plugins/iconaway.c	Mon Jun 02 21:51:06 2003 +0000
@@ -20,7 +20,7 @@
 
 void iconify_windows(GaimConnection *gc, char *state,
 					 char *message, void *data) {
-	struct gaim_window *win;
+	GaimWindow *win;
 	GList *windows;
 
 	if (!imaway || !gc->away)
@@ -33,10 +33,10 @@
 		 windows != NULL;
 		 windows = windows->next) {
 
-		win = (struct gaim_window *)windows->data;
+		win = (GaimWindow *)windows->data;
 
 		if (GAIM_IS_GTK_WINDOW(win)) {
-			struct gaim_gtk_window *gtkwin;
+			GaimGtkWindow *gtkwin;
 
 			gtkwin = GAIM_GTK_WINDOW(win);