AutomatableModel: made member variables private again

As of commit dd28a654b5 some member
variables were made protected without any actual requirement for it.
Revert the part of the commit.
This commit is contained in:
Tobias Doerffel
2009-12-03 19:09:55 +01:00
parent d45de34c0d
commit cef439b1ce
2 changed files with 5 additions and 5 deletions

View File

@@ -225,9 +225,6 @@ protected:
float fittedValue( float _value ) const;
float m_minValue;
float m_maxValue;
float m_value;
private:
void linkModel( AutomatableModel * _model );
@@ -235,7 +232,10 @@ private:
DataType m_dataType;
float m_value;
float m_initValue;
float m_minValue;
float m_maxValue;
float m_step;
float m_range;