one more part of fix for bug 107575, including the much coveted whitespace

remove aIgnoreCase parameter from all nsString and nsCString consumers
sr=jag, r=shaver


git-svn-id: svn://10.0.0.236/trunk@113390 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alecf%netscape.com
2002-02-01 01:53:09 +00:00
parent cfab9c51c9
commit f7ee18f044
32 changed files with 149 additions and 151 deletions

View File

@@ -1491,10 +1491,10 @@ nsCString nsNativeAppSupportOS2::ParseDDEArg( HSZ args, int index ) {
// (which may not be accurate, but makes life so much easier).
const char *p = temp.get();
// Skip index commas.
PRInt32 offset = index ? temp.FindChar( ',', PR_FALSE, 0, index ) : 0;
PRInt32 offset = index ? temp.FindChar( ',', 0, index ) : 0;
if ( offset != -1 ) {
// Desired argument starts there and ends at next comma.
PRInt32 end = temp.FindChar( ',', PR_FALSE, offset+1 );
PRInt32 end = temp.FindChar( ',', offset+1 );
if ( end == -1 ) {
// Rest of string.
end = temp.Length();