Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 12, 2009, 6:47:14 PM (16 years ago)
Author:
rgrieder
Message:

Removed ConvertValue function, non capital version should be enough ;)
Also added std::string forward declaration to OrxonoxConfig.h.in

Location:
code/branches/pch/src/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/core/ConfigFileManager.cc

    r2896 r3152  
    312312                                // There might be an array index
    313313                                unsigned int index = 0;
    314                                 if (ConvertValue(&index, line.substr(pos2 + 1, pos3 - pos2 - 1)))
     314                                if (convertValue(&index, line.substr(pos2 + 1, pos3 - pos2 - 1)))
    315315                                {
    316316                                    // New array
  • code/branches/pch/src/core/ConfigValueContainer.cc

    r2662 r3152  
    303303
    304304        if (token.size() > 0)
    305             success = ConvertValue(&index, token[0]);
     305            success = convertValue(&index, token[0]);
    306306
    307307        if (!success || index < 0 || index > (signed int)MAX_VECTOR_INDEX)
Note: See TracChangeset for help on using the changeset viewer.