From 5c7b32cf51f01d818a69c7cba29c9088cd74d851 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 6 Jan 2014 20:38:24 +0100 Subject: [PATCH] AutomatableModelView: removed deprecated setValue() helper The setValue() helper method dates back to when we introduced model/view separation. It's not required anymore. --- include/AutomatableModelView.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/include/AutomatableModelView.h b/include/AutomatableModelView.h index 6c59d8f61..1c35d02aa 100644 --- a/include/AutomatableModelView.h +++ b/include/AutomatableModelView.h @@ -1,7 +1,7 @@ /* * AutomatableModelView.h - class AutomatableModelView * - * Copyright (c) 2008-2013 Tobias Doerffel + * Copyright (c) 2008-2014 Tobias Doerffel * * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net * @@ -56,15 +56,6 @@ public: return( modelUntyped() ? modelUntyped()->value() : 0 ); } - inline void setValue( const float _value ) - { - if( modelUntyped() ) - { - modelUntyped()->setValue( _value ); - } - } - - inline void setDescription( const QString & _desc ) { m_description = _desc;