diff src/protocols/gg/gg.c @ 6059:d8cd876e613e

[gaim-migrate @ 6509] I made a lot of server.c functions use const chat * instead of const * Made the alias entry have focus in the alias buddy dialog. Fixed a typo thanks to J. Silvestri committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 08 Jul 2003 03:36:41 +0000
parents 7d385de2f9cd
children 99f4bbeb27bc
line wrap: on
line diff
--- a/src/protocols/gg/gg.c	Tue Jul 08 02:33:17 2003 +0000
+++ b/src/protocols/gg/gg.c	Tue Jul 08 03:36:41 2003 +0000
@@ -1,6 +1,6 @@
 /*
  * gaim - Gadu-Gadu Protocol Plugin
- * $Id: gg.c 6360 2003-06-18 06:01:15Z chipx86 $
+ * $Id: gg.c 6509 2003-07-08 03:36:41Z thekingant $
  *
  * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
  * 
@@ -163,7 +163,7 @@
 	return msg;
 }
 
-static void agg_set_away(GaimConnection *gc, char *state, char *msg)
+static void agg_set_away(GaimConnection *gc, const char *state, const char *msg)
 {
 	struct agg_data *gd = (struct agg_data *)gc->proto_data;
 	int status = gd->own_status;
@@ -591,7 +591,7 @@
 	gg_add_notify(gd->sess, strtol(who, (char **)NULL, 10));
 }
 
-static void agg_rem_buddy(GaimConnection *gc, char *who, char *group)
+static void agg_rem_buddy(GaimConnection *gc, const char *who, const char *group)
 {
 	struct agg_data *gd = (struct agg_data *)gc->proto_data;
 	if (invalid_uin(who))