| 1465 | } |
| 1466 | |
| 1467 | void Case::VariableChanged( const wxString &var, size_t ndxHybrid) |
| 1468 | { |
| 1469 | // Send the additional case event that this variable |
| 1470 | // was programmatically changed and needs to be updated |
| 1471 | CaseEvent ce( CaseEvent::VARS_CHANGED, ndxHybrid ); |
| 1472 | ce.GetVars().Add( var ); |
| 1473 | SendEvent( ce ); |
| 1474 | |
| 1475 | // issue the request for any calculations to be updated as needed |
| 1476 | Recalculate( var, ndxHybrid); |
| 1477 | } |
| 1478 | |
| 1479 | void Case::VariablesChanged( const wxArrayString &list, size_t ndxHybrid) |
| 1480 | { |
no test coverage detected