incorporated recent API-changes

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms-mv@716 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-02-25 23:27:48 +00:00
parent 20d9f3e671
commit f61c989e71
2 changed files with 5 additions and 5 deletions

View File

@@ -97,8 +97,8 @@ QString ladspaBrowser::nodeName( void ) const
ladspaBrowserView::ladspaBrowserView( tool * _tool, QWidget * _parent ) :
toolView( _tool, _parent )
ladspaBrowserView::ladspaBrowserView( tool * _tool ) :
toolView( _tool )
{
QHBoxLayout * hlayout = new QHBoxLayout( this );
hlayout->setSpacing( 0 );

View File

@@ -39,7 +39,7 @@ class ladspaBrowserView : public toolView
{
Q_OBJECT
public:
ladspaBrowserView( tool * _tool, QWidget * _parent );
ladspaBrowserView( tool * _tool );
virtual ~ladspaBrowserView();
@@ -63,9 +63,9 @@ public:
ladspaBrowser( void );
virtual ~ladspaBrowser();
virtual pluginView * instantiateView( QWidget * _parent )
virtual pluginView * instantiateView( QWidget * )
{
return( new ladspaBrowserView( this, _parent ) );
return( new ladspaBrowserView( this ) );
}
virtual QString nodeName( void ) const;