AutomatableModel: fix member variable initialization order

Initialize member variables of AutomatableModel in order of their
declaration to fix compiler warning.
This commit is contained in:
Tobias Doerffel
2009-12-03 01:10:12 +01:00
parent 48d7e7cf50
commit a141fd477a

View File

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