Revert "AutomatableModel: fix member variable initialization order"

This reverts commit a141fd477a.
This commit is contained in:
Tobias Doerffel
2009-12-03 18:31:13 +01:00
parent a141fd477a
commit d45de34c0d

View File

@@ -46,8 +46,8 @@ AutomatableModel::AutomatableModel( DataType _type,
Model( _parent, _display_name, _default_constructed ),
m_minValue( _min ),
m_maxValue( _max ),
m_value( _val ),
m_dataType( _type ),
m_value( _val ),
m_initValue( _val ),
m_step( _step ),
m_range( _max - _min ),