ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/modules/zephyr zephyr_mod.c,1.2,1.3


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/zephyr zephyr_mod.c,1.2,1.3
Date: Thu, 16 Jan 2003 04:51:06 -0500

Update of /cvsroot/ayttm/ayttm/modules/zephyr
In directory subversions:/tmp/cvs-serv15316/modules/zephyr

Modified Files:
        zephyr_mod.c 
Log Message:
changed code almost everywhere.  removed gtk dependencies in some places, 
changed gdk_input_* to eb_input_*, etc... see the ChangeLog.

Index: zephyr_mod.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/zephyr/zephyr_mod.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- zephyr_mod.c        14 Jan 2003 22:17:28 -0000      1.2
+++ zephyr_mod.c        16 Jan 2003 09:51:04 -0000      1.3
@@ -600,7 +600,7 @@
   fprintf(stderr, "DEBUG: eb_zephyr_login: Adding notice checker\n") ;
 #endif
   ZEPHYR_LOCAL_NOT_TAG = 0 ;
-  ZEPHYR_LOCAL_NOT_TAG = gtk_timeout_add(ZEPHYR_NOT_CHK_INT,
+  ZEPHYR_LOCAL_NOT_TAG = eb_timeout_add(ZEPHYR_NOT_CHK_INT,
                                          zephyr_check_notices,
                                          account) ;
 
@@ -611,7 +611,7 @@
   fprintf(stderr, "DEBUG: eb_zephyr_login: Adding contact checker\n") ;
 #endif
   ZEPHYR_LOCAL_CON_TAG = 0 ;
-  ZEPHYR_LOCAL_CON_TAG = gtk_timeout_add(ZEPHYR_CON_CHK_INT,
+  ZEPHYR_LOCAL_CON_TAG = eb_timeout_add(ZEPHYR_CON_CHK_INT,
                                          zephyr_check_all_buddies,
                                          account) ;
 
@@ -659,13 +659,13 @@
 #if ZEPHYR_DEBUG
   fprintf(stderr, "DEBUG: eb_zephyr_logout: Removing contact checker\n") ;
 #endif
-  if(ZEPHYR_LOCAL_CON_TAG) gtk_timeout_remove(ZEPHYR_LOCAL_CON_TAG) ;
+  if(ZEPHYR_LOCAL_CON_TAG) eb_timeout_remove(ZEPHYR_LOCAL_CON_TAG) ;
   
   /* Stop notice checking */
 #if ZEPHYR_DEBUG
   fprintf(stderr, "DEBUG: eb_zephyr_logout: Removing notice checker\n") ;
 #endif
-  if(ZEPHYR_LOCAL_NOT_TAG) gtk_timeout_remove(ZEPHYR_LOCAL_NOT_TAG) ;
+  if(ZEPHYR_LOCAL_NOT_TAG) eb_timeout_remove(ZEPHYR_LOCAL_NOT_TAG) ;
   
   /* Cancel subscriptions */
 #if ZEPHYR_DEBUG





reply via email to

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