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

Modified Files:
        ComposeTemplate.cpp 
Log Message:
don't call isascii() with signed chars

Index: ComposeTemplate.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/ComposeTemplate.cpp,v
retrieving revision 1.64
retrieving revision 1.65
diff -b -u -2 -r1.64 -r1.65
--- ComposeTemplate.cpp 22 Apr 2004 12:56:05 -0000      1.64
+++ ComposeTemplate.cpp 22 Apr 2004 18:45:38 -0000      1.65
@@ -546,5 +546,5 @@
          while ( tk.HasMoreTokens() )
          {
-            char chInitial = tk.GetNextToken()[0u];
+            unsigned char chInitial = tk.GetNextToken()[0u];
 
             if ( chInitial == '<' )



-------------------------------------------------------
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to