Checkpoint. synergys now works. Still need to do lib/client and

synergyc.
This commit is contained in:
crs
2004-02-14 14:04:36 +00:00
parent c44c18bfdc
commit 1861f21fb5
68 changed files with 3812 additions and 4114 deletions

View File

@@ -176,7 +176,7 @@ CStringUtil::CaselessCmp::cmpEqual(
const CString::value_type& a,
const CString::value_type& b)
{
// FIXME -- use std::tolower but not in all versions of libstdc++ have it
// should use std::tolower but not in all versions of libstdc++ have it
return tolower(a) == tolower(b);
}
@@ -185,7 +185,7 @@ CStringUtil::CaselessCmp::cmpLess(
const CString::value_type& a,
const CString::value_type& b)
{
// FIXME -- use std::tolower but not in all versions of libstdc++ have it
// should use std::tolower but not in all versions of libstdc++ have it
return tolower(a) < tolower(b);
}