| 57 | } |
| 58 | |
| 59 | void IntrinsicEdPropertyEditorString::onValueChanged() |
| 60 | { |
| 61 | _INTR_ASSERT(_property); |
| 62 | rapidjson::Value& prop = *_property; |
| 63 | |
| 64 | if (_ui.value->text().toStdString().c_str() != prop["value"]) |
| 65 | { |
| 66 | prop["value"].SetString(_ui.value->text().toStdString().c_str(), |
| 67 | _document->GetAllocator()); |
| 68 | |
| 69 | emit valueChanged(*_properties); |
| 70 | } |
| 71 | } |
nothing calls this directly
no outgoing calls
no test coverage detected