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.10,1.11


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/aim-oscar aim-oscar.c,1.10,1.11
Date: Mon, 17 Mar 2003 09:45:25 -0500

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

Modified Files:
        aim-oscar.c 
Log Message:
move status parentheses from modules to core


Index: aim-oscar.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/aim-oscar/aim-oscar.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- aim-oscar.c 6 Feb 2003 09:15:36 -0000       1.10
+++ aim-oscar.c 17 Mar 2003 14:44:49 -0000      1.11
@@ -1412,15 +1412,15 @@
                hours = hours%24;
                if( days )
                {
-                       g_snprintf( buf, 255, " (%d:%02d:%02d)", days, hours, 
minutes );
+                       g_snprintf( buf, 255, " %d:%02d:%02d", days, hours, 
minutes );
                }
                else if(hours)
                {
-                       g_snprintf( buf, 255, " (%d:%02d)", hours, minutes);
+                       g_snprintf( buf, 255, " %d:%02d", hours, minutes);
                }
                else
                {
-                       g_snprintf( buf, 255, " (%d)", minutes); 
+                       g_snprintf( buf, 255, " %d", minutes); 
                }
        }
 
@@ -1430,7 +1430,7 @@
                g_snprintf(string, 255, "%s", buf);
                
        if (!account->online)
-               g_snprintf(string, 255, "(Offline)");           
+               g_snprintf(string, 255, "Offline");             
 
        return string;
 }





reply via email to

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