diff src/protocols/rendezvous/rendezvous.c @ 9318:01c50436203e

[gaim-migrate @ 10126] i think this is more intelligent scaling. it would certainly be hard for it to be less intelligent scaling committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 19 Jun 2004 17:34:29 +0000
parents 78ccbda4c916
children ef79ee090cc5
line wrap: on
line diff
--- a/src/protocols/rendezvous/rendezvous.c	Sat Jun 19 16:05:50 2004 +0000
+++ b/src/protocols/rendezvous/rendezvous.c	Sat Jun 19 17:34:29 2004 +0000
@@ -638,19 +638,22 @@
 	GaimAccountOption *option;
 	char hostname[255];
 
-	prpl_info.api_version		= GAIM_PRPL_API_VERSION;
-	prpl_info.options			= OPT_PROTO_NO_PASSWORD;
-	prpl_info.icon_spec.format	= "jpeg";
-	prpl_info.icon_spec.width	= 0;
-	prpl_info.icon_spec.height	= 0;
-	prpl_info.list_icon			= rendezvous_prpl_list_icon;
-	prpl_info.list_emblems		= rendezvous_prpl_list_emblems;
-	prpl_info.status_text		= rendezvous_prpl_status_text;
-	prpl_info.tooltip_text		= rendezvous_prpl_tooltip_text;
-	prpl_info.login				= rendezvous_prpl_login;
-	prpl_info.close				= rendezvous_prpl_close;
-	prpl_info.send_im			= rendezvous_prpl_send_im;
-	prpl_info.set_away			= rendezvous_prpl_set_away;
+	prpl_info.api_version			= GAIM_PRPL_API_VERSION;
+	prpl_info.options				= OPT_PROTO_NO_PASSWORD;
+	prpl_info.icon_spec.format		= "jpeg";
+	prpl_info.icon_spec.min_width	= 0;
+	prpl_info.icon_spec.min_height	= 0;
+	prpl_info.icon_spec.max_width	= 0;
+	prpl_info.icon_spec.max_height	= 0;
+	prpl_info.icon_spec.stretch		= 0;
+	prpl_info.list_icon				= rendezvous_prpl_list_icon;
+	prpl_info.list_emblems			= rendezvous_prpl_list_emblems;
+	prpl_info.status_text			= rendezvous_prpl_status_text;
+	prpl_info.tooltip_text			= rendezvous_prpl_tooltip_text;
+	prpl_info.login					= rendezvous_prpl_login;
+	prpl_info.close					= rendezvous_prpl_close;
+	prpl_info.send_im				= rendezvous_prpl_send_im;
+	prpl_info.set_away				= rendezvous_prpl_set_away;
 
 	if (gethostname(hostname, 255) != 0) {
 		gaim_debug_warning("rendezvous", "Error %d when getting host name.  Using \"localhost.\"\n", errno);