Re: r19001 - in /lyx-devel/trunk/src/support: lstrings.cpp ls...

2007-07-06 Thread Abdelrazak Younes
Enrico Forestieri wrote: On Fri, Jul 06, 2007 at 04:50:17PM +0200, Abdelrazak Younes wrote: [EMAIL PROTECTED] wrote: Author: younes Date: Fri Jul 6 16:43:18 2007 New Revision: 19001 URL: http://www.lyx.org/trac/changeset/19001 Log: * lstring.cpp: - isAscii(): char is signed with MSVC so th

Re: r19001 - in /lyx-devel/trunk/src/support: lstrings.cpp ls...

2007-07-06 Thread Enrico Forestieri
On Fri, Jul 06, 2007 at 04:50:17PM +0200, Abdelrazak Younes wrote: > [EMAIL PROTECTED] wrote: > > Author: younes > > Date: Fri Jul 6 16:43:18 2007 > > New Revision: 19001 > > > > URL: http://www.lyx.org/trac/changeset/19001 > > Log: > > * lstring.cpp: > > - isAscii(): char is signed with MSVC

Re: r19001 - in /lyx-devel/trunk/src/support: lstrings.cpp ls...

2007-07-06 Thread Abdelrazak Younes
[EMAIL PROTECTED] wrote: Author: younes Date: Fri Jul 6 16:43:18 2007 New Revision: 19001 URL: http://www.lyx.org/trac/changeset/19001 Log: * lstring.cpp: - isAscii(): char is signed with MSVC so the comparison was not correct. Add a static_cast to "unsigned char" as per the other methods.