Skip to content

Commit

Permalink
fix typo for mapping old chipper field names to new :)
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Oct 20, 2011
1 parent 51af71b commit ae6fa13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XMLSchema.cpp
Expand Up @@ -366,10 +366,10 @@ print_element_names(xmlNode * a_node)

std::string Reader::remapOldNames(std::string const& input)
{
if (boost::iequals(input, "Unamed field 512") || boost::iequals(input, "Chipper Point ID"))
if (boost::iequals(input, "Unnamed field 512") || boost::iequals(input, "Chipper Point ID"))
return std::string("Chipper:PointID");

if (boost::iequals(input, "Unamed field 513") || boost::iequals(input, "Chipper Block ID"))
if (boost::iequals(input, "Unnamed field 513") || boost::iequals(input, "Chipper Block ID"))
return std::string("Chipper:BlockID");

return input;
Expand Down

0 comments on commit ae6fa13

Please sign in to comment.