Update of /cvsroot/mahogany/M/src/gui
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv9227/src/gui

Modified Files:
        wxFolderView.cpp 
Log Message:
fix for incorrect use of isalnum() for non-ASCII characters in the last commit

Index: wxFolderView.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxFolderView.cpp,v
retrieving revision 1.680
retrieving revision 1.681
diff -b -u -2 -r1.680 -r1.681
--- wxFolderView.cpp    19 Aug 2006 11:53:14 -0000      1.680
+++ wxFolderView.cpp    19 Aug 2006 11:57:09 -0000      1.681
@@ -4634,5 +4634,5 @@
          // current selection, so prevent this from happening by *not* calling
          // event.Skip() in this case
-         if ( !isalnum(key) )
+         if ( key >= 0x7f || !isalnum(key) )
          {
             // let the control process other keys (some are used for navigation


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Mahogany-cvsupdates mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to