mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
Add missing disableIO to proxy fields
This commit is contained in:
parent
9a159cc02d
commit
308c697feb
@ -80,11 +80,13 @@ RimEclipsePropertyFilter::RimEclipsePropertyFilter()
|
|||||||
m_integerLowerBound.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName() );
|
m_integerLowerBound.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName() );
|
||||||
m_integerLowerBound.registerGetMethod( this, &RimEclipsePropertyFilter::lowerBound );
|
m_integerLowerBound.registerGetMethod( this, &RimEclipsePropertyFilter::lowerBound );
|
||||||
m_integerLowerBound.registerSetMethod( this, &RimEclipsePropertyFilter::setLowerBound );
|
m_integerLowerBound.registerSetMethod( this, &RimEclipsePropertyFilter::setLowerBound );
|
||||||
|
m_integerLowerBound.xmlCapability()->disableIO();
|
||||||
|
|
||||||
CAF_PDM_InitFieldNoDefault( &m_integerUpperBound, "IntegerUpperBound", "Max" );
|
CAF_PDM_InitFieldNoDefault( &m_integerUpperBound, "IntegerUpperBound", "Max" );
|
||||||
m_integerUpperBound.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName() );
|
m_integerUpperBound.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName() );
|
||||||
m_integerUpperBound.registerGetMethod( this, &RimEclipsePropertyFilter::upperBound );
|
m_integerUpperBound.registerGetMethod( this, &RimEclipsePropertyFilter::upperBound );
|
||||||
m_integerUpperBound.registerSetMethod( this, &RimEclipsePropertyFilter::setUpperBound );
|
m_integerUpperBound.registerSetMethod( this, &RimEclipsePropertyFilter::setUpperBound );
|
||||||
|
m_integerUpperBound.xmlCapability()->disableIO();
|
||||||
|
|
||||||
CAF_PDM_InitField( &m_useCategorySelection, "CategorySelection", false, "Category Selection" );
|
CAF_PDM_InitField( &m_useCategorySelection, "CategorySelection", false, "Category Selection" );
|
||||||
m_upperBound.uiCapability()->setUiEditorTypeName( caf::PdmUiDoubleSliderEditor::uiEditorTypeName() );
|
m_upperBound.uiCapability()->setUiEditorTypeName( caf::PdmUiDoubleSliderEditor::uiEditorTypeName() );
|
||||||
|
Loading…
Reference in New Issue
Block a user