Index: sources/gui/qml/compounds/InstitutionalContainer.qml =================================================================== diff -u -rf433eeefae34530e7cc3dc4e5576e43729b236f2 -r49271f2bd039c9d15586c7c9b2f57f80c801d819 --- sources/gui/qml/compounds/InstitutionalContainer.qml (.../InstitutionalContainer.qml) (revision f433eeefae34530e7cc3dc4e5576e43729b236f2) +++ sources/gui/qml/compounds/InstitutionalContainer.qml (.../InstitutionalContainer.qml) (revision 49271f2bd039c9d15586c7c9b2f57f80c801d819) @@ -50,8 +50,9 @@ property int rejectionDef : 0 property var defModel : [] property bool grabbed : false - property int row : 0 + signal didChange(int vValue) + enum Range { Min , Max , @@ -88,7 +89,7 @@ } onDidChange : function(vValue) { - vInstitutionalRecord.clearRejectionReason( _root.row , InstitutionalContainer.Min ) + _root.didChange( InstitutionalContainer.Min ) value = vValue } } @@ -131,7 +132,7 @@ } onDidChange : function(vValue) { - vInstitutionalRecord.clearRejectionReason( _root.row , InstitutionalContainer.Max ) + _root.didChange( InstitutionalContainer.Max ) value = vValue } } @@ -158,7 +159,6 @@ color: _root.rejectionDef ? Colors.panelInvalidBorderColor : Colors.transparent } - // TODO fix VitalsInterval on enhancement branch... this branch does not have updated vitals code and combobox ValueAdjuster { id: _def anchors.fill : parent editable : _root.defEditable @@ -176,7 +176,7 @@ } onDidChange : function(vValue) { - vInstitutionalRecord.clearRejectionReason( _root.row , InstitutionalContainer.Def ) + _root.didChange( InstitutionalContainer.Def ) value = vValue } }