Remove an object out of the document
| 3501 | |
| 3502 | /// Remove an object out of the document |
| 3503 | void Document::removeObject(const DocumentObject* object) |
| 3504 | { |
| 3505 | if (object->getDocument() == this) { |
| 3506 | removeObject(object->getNameInDocument()); |
| 3507 | } |
| 3508 | } |
| 3509 | |
| 3510 | /// Remove an object out of the document |
| 3511 | void Document::removeObject(const char* sName) |
no test coverage detected