Remove use of operator[] on a std::map, so no spurious elements get inserted. (fixes... 465/head
authorJürgen Doser <jurgen.doser@gmail.com>
Fri, 1 Feb 2013 14:50:33 +0000 (15:50 +0100)
committerJürgen Doser <jurgen.doser@gmail.com>
Fri, 1 Feb 2013 14:50:33 +0000 (15:50 +0100)
commit9ebf1fd3b7aa84cad2824906c336ea678433a3f4
tree96673c91e21305d20b5e8bac3684f99e7991529c
parent12472a44d4ce1a35cad0b9ebe53550a7d44134d5
Remove use of operator[] on a std::map, so no spurious elements get inserted. (fixes #464)

All uses of operator[] in guiConfigureWorld.cpp have been replaced
with .find() operations.

In some places, operator[] had been called with mod names of "Add-Ons"
or "N/A", which would insert a default-constructed ModSpec into the
list of add-on mods. In other places, the use of operator[] was safe
now, but it probably is safer for future changes to use .find()
everywhere.
src/guiConfigureWorld.cpp