| 137 | } |
| 138 | |
| 139 | void Map::MapColorSet::insert(int pos, MapColor* color) |
| 140 | { |
| 141 | colors.insert(colors.begin() + pos, color); |
| 142 | adjustColorPriorities(pos + 1, colors.size()); |
| 143 | } |
| 144 | |
| 145 | void Map::MapColorSet::erase(int pos) |
| 146 | { |
no test coverage detected