diff src/gtkpounce.c @ 14035:8bda65b88e49

[gaim-migrate @ 16638] A bunch of small changes. Mostly remove "if not null" checks before calling g_free, g_list_free, g_slist_free and g_strdup. Also use g_list_foreach() to call g_free to free strings in an array. And some whitespace changes here and there. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 05 Aug 2006 08:27:39 +0000
parents a9ff4499d9ce
children
line wrap: on
line diff
--- a/src/gtkpounce.c	Sat Aug 05 05:42:28 2006 +0000
+++ b/src/gtkpounce.c	Sat Aug 05 08:27:39 2006 +0000
@@ -432,8 +432,8 @@
 			}
 		}
 
-		if (username != NULL) g_free(username);
-		if (protocol != NULL) g_free(protocol);
+		g_free(username);
+		g_free(protocol);
 
 		gtk_drag_finish(dc, TRUE, (dc->action == GDK_ACTION_MOVE), t);
 	}
@@ -1195,7 +1195,7 @@
 	/* Create the scrolled window */
 	sw = gtk_scrolled_window_new(0, 0);
 	gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
-			 		GTK_POLICY_AUTOMATIC,
+					GTK_POLICY_AUTOMATIC,
 					GTK_POLICY_AUTOMATIC);
 	gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw),
 						GTK_SHADOW_IN);