Update of /cvsroot/mahogany/M/src/adb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25643/src/adb

Modified Files:
        ImportEudora.cpp ProvFC.cpp 
Log Message:
reverting some of isspace/isalnum changes

Index: ImportEudora.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/ImportEudora.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -b -u -2 -r1.9 -r1.10
--- ImportEudora.cpp    16 Mar 2004 00:00:57 -0000      1.9
+++ ImportEudora.cpp    16 Mar 2004 01:19:45 -0000      1.10
@@ -205,10 +205,10 @@
    // skip spaces (normally only one, but be careful)
    const char *pc = line.c_str() + lenAlias;
-   while( wxIsspace(*pc) )
+   while( isspace(*pc) )
       pc++;
 
    // next goes the nickname
    nickname->Empty();
-   while ( *pc && !wxIsspace(*pc) )
+   while ( *pc && !isspace(*pc) )
       *nickname += *pc++;
 
@@ -218,9 +218,9 @@
       // next is the address (don't know whether multiple addresses are
       // allowed)
-      while ( wxIsspace(*pc) )
+      while ( isspace(*pc) )
          pc++;
 
       wxString address;
-      while ( *pc && !wxIsspace(*pc) )
+      while ( *pc && !isspace(*pc) )
          address += *pc++;
 
@@ -235,15 +235,15 @@
          {
             pc = line.c_str() + lenNote;
-            while( wxIsspace(*pc) )
+            while( isspace(*pc) )
                pc++;
 
             // next goes the nickname (again)
             wxString nick2;
-            while ( *pc && !wxIsspace(*pc) )
+            while ( *pc && !isspace(*pc) )
                nick2 += *pc++;
 
             if ( nick2 == *nickname )
             {
-               while ( wxIsspace(*pc) )
+               while ( isspace(*pc) )
                   pc++;
 

Index: ProvFC.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/ProvFC.cpp,v
retrieving revision 1.49
retrieving revision 1.50
diff -b -u -2 -r1.49 -r1.50
--- ProvFC.cpp  16 Mar 2004 00:00:57 -0000      1.49
+++ ProvFC.cpp  16 Mar 2004 01:19:46 -0000      1.50
@@ -801,5 +801,5 @@
           while ( fgets(buf, WXSIZEOF(buf), fp) ) {
             const char *pc = buf;
-            while ( wxIsspace(*pc) )
+            while ( isspace(*pc) )
               pc++;
 



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to