From f61c989e7160dc68f4c3e5df365549227f4de11d Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 25 Feb 2008 23:27:48 +0000 Subject: [PATCH] incorporated recent API-changes git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms-mv@716 0778d3d1-df1d-0410-868b-ea421aaaa00d --- plugins/ladspa_browser/ladspa_browser.cpp | 4 ++-- plugins/ladspa_browser/ladspa_browser.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/ladspa_browser/ladspa_browser.cpp b/plugins/ladspa_browser/ladspa_browser.cpp index 4ce460ed0..55b5a7f15 100644 --- a/plugins/ladspa_browser/ladspa_browser.cpp +++ b/plugins/ladspa_browser/ladspa_browser.cpp @@ -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 ); diff --git a/plugins/ladspa_browser/ladspa_browser.h b/plugins/ladspa_browser/ladspa_browser.h index db27616ce..326506e93 100644 --- a/plugins/ladspa_browser/ladspa_browser.h +++ b/plugins/ladspa_browser/ladspa_browser.h @@ -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;