git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1179 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-27 15:00:53 +00:00
parent f3bba83dc6
commit 4fc41a4694
3 changed files with 5 additions and 17 deletions

View File

@@ -38,8 +38,6 @@
#include "dummy_plugin.h"
//static embed::descriptor dummy_embed = { 0, NULL, "" } ;
static plugin::descriptor dummy_plugin_descriptor =
{
"dummy",
@@ -177,7 +175,7 @@ void plugin::getDescriptorsOfAvailPlugins( QVector<descriptor> & _plugin_descs )
{
printf( "LMMS-plugin %s does not have a "
"plugin-descriptor named %s!\n",
f.absoluteFilePath().toAscii().constData(),
f.absoluteFilePath().toAscii().constData(),
desc_name.toAscii().constData() );
continue;
}
@@ -188,6 +186,7 @@ void plugin::getDescriptorsOfAvailPlugins( QVector<descriptor> & _plugin_descs )
pluginView * plugin::createView( QWidget * _parent )
{
pluginView * pv = instantiateView( _parent );

View File

@@ -1383,23 +1383,13 @@ trackOperationsWidget::trackOperationsWidget( trackView * _parent ) :
m_muteBtn->setCheckable( TRUE );
m_muteBtn->move( 46, 8 );
m_muteBtn->show();
m_muteBtn->setWhatsThis(
tr( "With this switch you can either mute this track or mute "
"all other tracks.\nBy clicking left, this track is "
"muted. This is useful, if you only want to listen to "
"the other tracks without changing this track "
"and loosing information.\nWhen you click right on "
"this switch, all other tracks will be "
"muted. This is useful, if you only want to listen to "
"this track." ) );
toolTip::add( m_muteBtn, tr( "Mute this track" ) );
m_soloBtn = new pixmapButton( this, tr( "Mute" ) );
m_soloBtn = new pixmapButton( this, tr( "Solo" ) );
m_soloBtn->setActiveGraphic( embed::getIconPixmap( "led_red" ) );
m_soloBtn->setInactiveGraphic( embed::getIconPixmap( "led_off" ) );
m_soloBtn->setCheckable( TRUE );
m_soloBtn->move( 62, 8 );
m_soloBtn->show();
toolTip::add( m_soloBtn, tr( "Solo" ) );
connect( this, SIGNAL( trackRemovalScheduled( trackView * ) ),