Update of /cvsroot/mahogany/M/src/mail
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10764/src/mail
Modified Files:
MailFolder.cpp Message.cpp
Log Message:
isspace->wxIsspace, isalnum->wxIsalnum, and fixing warning "Filters.cpp:2051: warning:
comparison is always true due to limited range of data type"
Index: MailFolder.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolder.cpp,v
retrieving revision 1.304
retrieving revision 1.305
diff -b -u -2 -r1.304 -r1.305
--- MailFolder.cpp 12 Oct 2003 17:24:19 -0000 1.304
+++ MailFolder.cpp 16 Mar 2004 00:00:59 -0000 1.305
@@ -985,5 +985,5 @@
// skip spaces
- while ( isspace(*pStart) )
+ while ( wxIsspace(*pStart) )
pStart++;
}
Index: Message.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/Message.cpp,v
retrieving revision 1.36
retrieving revision 1.37
diff -b -u -2 -r1.36 -r1.37
--- Message.cpp 12 Oct 2003 17:24:19 -0000 1.36
+++ Message.cpp 16 Mar 2004 00:01:00 -0000 1.37
@@ -133,5 +133,5 @@
String last;
const wxChar *p = start + fullname.length() - 1;
- while ( p >= start && !isspace(*p) )
+ while ( p >= start && !wxIsspace(*p) )
last += *p--;
@@ -271,5 +271,5 @@
String last;
const char *p = start + fullname.length() - 1;
- while ( p >= start && !isspace(*p) )
+ while ( p >= start && !wxIsspace(*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