Quasar
Moderator

Posts: 5152
Registered: 08-00 |
Like the last time you found an error such as this, it was the case sensitivity of a string comparison operation being accidentally enforced:
code:
// Original code:
if(!QStrCaseCmp(ps->tokenbuffer, "bright"))
// Incorrect code translated to C++ qstring class:
if(*ps->tokenbuffer == "bright")
// Corrected code I'm about to commit:
if(!ps->tokenbuffer->strCaseCmp("bright"))
|