Use range-based for loops + fix const correctness

This commit is contained in:
Colin Wallace
2018-04-15 18:17:37 -07:00
committed by Lukas W
parent ae0dd21df3
commit da126bfb5c
4 changed files with 19 additions and 33 deletions

View File

@@ -130,6 +130,7 @@ public:
void removeConnection( ControllerConnection * );
int connectionCount() const;
bool hasModel( const Model * m ) const;
public slots:
virtual ControllerDialog * createDialog( QWidget * _parent );
@@ -139,8 +140,6 @@ public slots:
m_name = _new_name;
}
bool hasModel( const Model * m );
protected:
// The internal per-controller get-value function

View File

@@ -70,7 +70,6 @@ private:
} ;
typedef BoolModel groupBoxModel;
#endif