Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 31, 2010, 1:00:20 AM (14 years ago)
Author:
landauf
Message:

until now we could group words and values in console commands and XML values using parentheses (…). now we have to use braces {…}, because that works better in connection with Tcl. in practice however this feature was never used before, so this change shouldn't affect anything.

File:
1 edited

Legend:

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

    r7236 r7276  
    293293        boost::filesystem::path folder(ogrePluginsDirectory_);
    294294        // Do some SubString magic to get the comma separated list of plugins
    295         SubString plugins(ogrePlugins_, ",", " ", false, '\\', false, '"', false, '(', ')', false, '\0');
     295        SubString plugins(ogrePlugins_, ",", " ", false, '\\', false, '"', false, '{', '}', false, '\0');
    296296        // Use backslash paths on Windows! file_string() already does that though.
    297297        for (unsigned int i = 0; i < plugins.size(); ++i)
Note: See TracChangeset for help on using the changeset viewer.