Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3295


Ignore:
Timestamp:
Jul 14, 2009, 4:34:13 PM (15 years ago)
Author:
landauf
Message:

fixed a bug causing console commands to be case sensitive if called with defaultvalues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core4/src/core/CommandEvaluation.cc

    r3257 r3295  
    8484        }
    8585
    86         if (!this->bCommandChanged_ || removeTrailingWhitespaces(this->command_) == removeTrailingWhitespaces(this->originalCommand_))
     86        if (!this->bCommandChanged_ || nocaseCmp(removeTrailingWhitespaces(this->command_), removeTrailingWhitespaces(this->originalCommand_)) == 0)
    8787        {
    8888            COUT(4) << "CE_execute: " << this->command_ << "\n";
Note: See TracChangeset for help on using the changeset viewer.