Update of /cvsroot/mahogany/M/src/modules/crypt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10764/src/modules/crypt

Modified Files:
        PGPEngine.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: PGPEngine.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/crypt/PGPEngine.cpp,v
retrieving revision 1.31
retrieving revision 1.32
diff -b -u -2 -r1.31 -r1.32
--- PGPEngine.cpp       6 Jan 2004 00:37:09 -0000       1.31
+++ PGPEngine.cpp       16 Mar 2004 00:01:00 -0000      1.32
@@ -546,5 +546,5 @@
             String code;
             const wxChar *pc;
-            for ( pc = line.c_str(); *pc && !isspace(*pc); pc++ )
+            for ( pc = line.c_str(); *pc && !wxIsspace(*pc); pc++ )
             {
                code += *pc;
@@ -603,5 +603,5 @@
             {
                // skip the key id
-               while ( *pc && !isspace(*pc) )
+               while ( *pc && !wxIsspace(*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