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

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

Index: MailFolder.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolder.cpp,v
retrieving revision 1.305
retrieving revision 1.306
diff -b -u -2 -r1.305 -r1.306
--- MailFolder.cpp      16 Mar 2004 00:00:59 -0000      1.305
+++ MailFolder.cpp      16 Mar 2004 01:19:46 -0000      1.306
@@ -985,5 +985,5 @@
 
          // skip spaces
-         while ( wxIsspace(*pStart) )
+         while ( isspace(*pStart) )
             pStart++;
       }

Index: Message.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/Message.cpp,v
retrieving revision 1.37
retrieving revision 1.38
diff -b -u -2 -r1.37 -r1.38
--- Message.cpp 16 Mar 2004 00:01:00 -0000      1.37
+++ Message.cpp 16 Mar 2004 01:19:46 -0000      1.38
@@ -258,6 +258,6 @@
    if ( addr.length() == 0 )
    {
-      if(firstName) *firstName = "";
-      if(lastName) *lastName = "";
+      if(firstName) *firstName = _T("");
+      if(lastName) *lastName = _T("");
       return;
    }
@@ -271,5 +271,5 @@
    String last;
    const char *p = start + fullname.length() - 1;
-   while ( p >= start && !wxIsspace(*p) )
+   while ( p >= start && !isspace(*p) )
       last += *p--;
 



-------------------------------------------------------
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