Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 31, 2010, 3:03:06 AM (14 years ago)
Author:
landauf
Message:

ConfigFileManager added backslashes to strings with special chars when saving them into the config file, but didn't remove them while loading. fixed this issue.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/consolecommands3/src/libraries/core/command/Executor.cc

    r7276 r7283  
    4848    Executor::Executor(const Executor& other) : name_(other.name_)
    4949    {
    50         for (int i = 0; i < MAX_FUNCTOR_ARGUMENTS; ++i)
     50        for (size_t i = 0; i < MAX_FUNCTOR_ARGUMENTS; ++i)
    5151            defaultValue_[i] = other.defaultValue_[i];
    5252        this->functor_ = other.functor_->clone();
Note: See TracChangeset for help on using the changeset viewer.