ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/modules/aim-oscar aim-oscar.c,1.9,1.10


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/aim-oscar aim-oscar.c,1.9,1.10
Date: Thu, 06 Feb 2003 04:15:39 -0500

Update of /cvsroot/ayttm/ayttm/modules/aim-oscar
In directory subversions:/tmp/cvs-serv14654/modules/aim-oscar

Modified Files:
        aim-oscar.c 
Log Message:
chat_window & chat_room structs cleaning


Index: aim-oscar.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/aim-oscar/aim-oscar.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- aim-oscar.c 30 Jan 2003 08:23:19 -0000      1.9
+++ aim-oscar.c 6 Feb 2003 09:15:36 -0000       1.10
@@ -883,11 +883,11 @@
 
       ecr->protocol_local_chat_room_data = (void *) roominfo->exchange;
 
-      ecr->chat_room_account = ela;
+      ecr->local_user = ela;
 
       alad->chat_room = ecr;
 
-      ecr->chat_room_account = ela;
+      ecr->local_user = ela;
 
       invite_dialog(ela, g_strdup(userinfo->sn), g_strdup(roominfo->name),
                    g_strdup(roominfo->name));
@@ -1839,7 +1839,7 @@
 void eb_aim_send_chat_room_message( eb_chat_room * room, gchar * message )
 {
   struct eb_aim_local_account_data* alad =
-    room->chat_room_account->protocol_local_account_data;
+    room->local_user->protocol_local_account_data;
 
   gchar *message2 = linkify(message);
 
@@ -1850,7 +1850,7 @@
 void eb_aim_join_chat_room(eb_chat_room *room)
 {
   struct eb_aim_local_account_data *alad =
-    room->chat_room_account->protocol_local_account_data;
+    room->local_user->protocol_local_account_data;
 
 #ifdef DEBUG
   g_message("eb_aim_join_chat_room: %s", room->id);
@@ -1862,7 +1862,7 @@
 void eb_aim_leave_chat_room( eb_chat_room * room )
 {
   struct eb_aim_local_account_data *alad =
-    room->chat_room_account->protocol_local_account_data;
+    room->local_user->protocol_local_account_data;
 
 #ifdef DEBUG
   g_message("eb_aim_leave_chat_room: %s", room->id);
@@ -1896,7 +1896,7 @@
 
   ecr->fellows = NULL;
   ecr->connected = FALSE;
-  ecr->chat_room_account = ela;
+  ecr->local_user = ela;
 
   // TODO: HACK
   alad->chat_room = ecr;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]