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:
Tobias Doerffel
2008-07-18 14:02:16 +00:00
parent 58fe7bbc15
commit a47a36c86e
20 changed files with 70 additions and 101 deletions

View File

@@ -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: