ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/modules/msn2 msn.C,1.43,1.44


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/msn2 msn.C,1.43,1.44
Date: Fri, 24 Jan 2003 08:34:43 -0500

Update of /cvsroot/ayttm/ayttm/modules/msn2
In directory subversions:/tmp/cvs-serv13526/modules/msn2

Modified Files:
        msn.C 
Log Message:
changed GList to LList in many places.  please test.

Index: msn.C
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/msn2/msn.C,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- msn.C       23 Jan 2003 23:07:21 -0000      1.43
+++ msn.C       24 Jan 2003 13:34:41 -0000      1.44
@@ -110,7 +110,7 @@
 char * g_realloc_cpp(gchar * s);
 eb_account * eb_msn_new_account( gchar * account );
 
-GList * psmileys=NULL;
+LList * psmileys=NULL;
 
 /* Function Prototypes */
 extern "C"
@@ -127,7 +127,7 @@
 void close_conn(msnconn *conn);
 void eb_msn_real_change_group(eb_account * ea, gchar *old_group, gchar 
*new_group);
 
-GList *eb_msn_get_smileys(void) { return psmileys; }
+LList *eb_msn_get_smileys(void) { return psmileys; }
 }
 
 typedef struct {
@@ -402,11 +402,11 @@
        return(ref_count);
 }
 
-/*************************************************************************************
+/*******************************************************************************
  *                             End Module Code
- 
************************************************************************************/
+ 
******************************************************************************/
 
-GList *msn_contacts = NULL;
+LList *msn_contacts = NULL;
 
 transfer_window * eb_find_window_tag(invitation_ftp * inv) {
   llist * l = transfer_windows;
@@ -579,7 +579,7 @@
 void eb_msn_logout( eb_local_account * account )
 {
        eb_msn_local_account_data * mlad = (eb_msn_local_account_data 
*)account->protocol_local_account_data;
-       GList *l;
+       LList *l;
 
        if(!account->connected)
                return;
@@ -977,7 +977,7 @@
 
 void eb_msn_add_user(eb_account * account )
 {
-       msn_contacts = g_list_append(msn_contacts, account->handle);
+       msn_contacts = l_list_append(msn_contacts, account->handle);
        if (mainconn != NULL && !listsyncing) {
          msn_del_from_list(mainconn, "BL", account->handle);
          msn_add_to_list(mainconn, "FL", account->handle);
@@ -990,7 +990,7 @@
 
 void eb_msn_del_user(eb_account * account )
 {
-       msn_contacts = g_list_remove(msn_contacts, account->handle);
+       msn_contacts = l_list_remove(msn_contacts, account->handle);
        if (mainconn != NULL) {
          msn_del_from_list(mainconn, "FL", account->handle);
          msn_del_from_list(mainconn, "AL", account->handle);
@@ -1530,7 +1530,7 @@
 
 void ext_got_info(msnconn * conn, syncinfo * info)
 {
-  GList *existing = get_all_accounts(SERVICE_INFO.protocol_id); 
+  LList *existing = get_all_accounts(SERVICE_INFO.protocol_id); 
   eb_debug(DBG_MOD, "Got the sync info!\n");
   msn_set_state(conn, "NLN");
   /* hack to check conn status */





reply via email to

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