Rename InstrumentView250 to InstrumentViewFixedSize

This commit is contained in:
Johannes Lorenz
2019-07-17 22:20:25 +02:00
parent a4df7a9765
commit aa8f9361c6
47 changed files with 50 additions and 50 deletions

View File

@@ -68,7 +68,7 @@ public:
virtual PluginView * instantiateView( QWidget * _parent )
{
return new InstrumentView250( this, _parent );
return new InstrumentViewFixedSize( this, _parent );
}
} ;

View File

@@ -59,14 +59,14 @@ public:
//! Instrument view with fixed LMMS-default size
class LMMS_EXPORT InstrumentView250 : public InstrumentView
class LMMS_EXPORT InstrumentViewFixedSize : public InstrumentView
{
QSize sizeHint() const override { return QSize(250, 250); }
QSize minimumSizeHint() const override { return sizeHint(); }
public:
using InstrumentView::InstrumentView;
~InstrumentView250() override;
~InstrumentViewFixedSize() override;
} ;