mirror of
https://github.com/LMMS/lmms.git
synced 2026-04-24 07:58:51 -04:00
removed publicName-properties in various classes and plugin-descriptor and use model::displayName instead
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1337 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -45,8 +45,9 @@ QVector<controller *> controller::s_controllers;
|
||||
|
||||
|
||||
|
||||
controller::controller( ControllerTypes _type, model * _parent ) :
|
||||
model( _parent ),
|
||||
controller::controller( ControllerTypes _type, model * _parent,
|
||||
const QString & _display_name ) :
|
||||
model( _parent, _display_name ),
|
||||
journallingObject(),
|
||||
m_type( _type )
|
||||
{
|
||||
@@ -149,7 +150,8 @@ controller * controller::create( ControllerTypes _ct, model * _parent )
|
||||
if( dummy )
|
||||
c = dummy;
|
||||
else
|
||||
c = new controller( DummyController, NULL );
|
||||
c = new controller( DummyController, NULL,
|
||||
QString() );
|
||||
break;
|
||||
|
||||
case LfoController:
|
||||
|
||||
Reference in New Issue
Block a user