| 552 | } |
| 553 | |
| 554 | bool WorkspaceObject_Impl::pushString() { |
| 555 | bool result = pushString(std::string(), true); |
| 556 | if (result) { |
| 557 | this->emitChangeSignals(); |
| 558 | } |
| 559 | return result; |
| 560 | } |
| 561 | |
| 562 | bool WorkspaceObject_Impl::pushString(bool checkValidity) { |
| 563 | return pushString(std::string(), checkValidity); |
nothing calls this directly
no test coverage detected