| 1172 | } |
| 1173 | |
| 1174 | void Map::saveMapCmd(const cmd::ArgumentList& args) |
| 1175 | { |
| 1176 | if (isUnnamed() || (_resource && _resource->isReadOnly())) |
| 1177 | { |
| 1178 | saveAs(); |
| 1179 | } |
| 1180 | // greebo: Always let the map be saved, regardless of the modified status. |
| 1181 | else /*if(GlobalMap().isModified())*/ |
| 1182 | { |
| 1183 | save(); |
| 1184 | } |
| 1185 | } |
| 1186 | |
| 1187 | void Map::exportMap(const cmd::ArgumentList& args) |
| 1188 | { |
nothing calls this directly
no test coverage detected