# HG changeset patch
# User Nathan Walp <nwalp@pidgin.im>
# Date 1047714936 0
# Node ID 5939d3d13ab3f61f6b4daee4facd978075ba91e3
# Parent  01e3497820754e4230fc54731dad323c250bd0dc
[gaim-migrate @ 5107]
fix a gtk warning

committer: Tailor Script <tailor@pidgin.im>

diff -r 01e349782075 -r 5939d3d13ab3 src/dialogs.c
--- a/src/dialogs.c	Sat Mar 15 07:48:27 2003 +0000
+++ b/src/dialogs.c	Sat Mar 15 07:55:36 2003 +0000
@@ -3399,7 +3399,8 @@
 	gtk_box_pack_start(GTK_BOX(topbox), bbox, FALSE, FALSE, 0);
 
 	gtk_entry_set_text(GTK_ENTRY(aliasentry), b->name);
-	gtk_entry_set_text(GTK_ENTRY(aliasname), b->alias);
+	if(b->alias)
+		gtk_entry_set_text(GTK_ENTRY(aliasname), b->alias);
 
 	/* Put the buttons in the box */
 	bbox = gtk_hbox_new(FALSE, 5);