| 424 | } |
| 425 | |
| 426 | void DbObject::VarsChangedHandler(const CustomVarObject::Ptr& object) |
| 427 | { |
| 428 | DbObject::Ptr dbobj = GetOrCreateByObject(object); |
| 429 | |
| 430 | if (!dbobj) |
| 431 | return; |
| 432 | |
| 433 | dbobj->SendVarsStatusUpdate(); |
| 434 | } |
| 435 | |
| 436 | void DbObject::VersionChangedHandler(const ConfigObject::Ptr& object) |
| 437 | { |
nothing calls this directly
no test coverage detected