Rename ladspa_2_lmms to Ladspa2LMMS

This commit is contained in:
Lukas W
2014-11-26 00:52:25 +01:00
parent 968909c07c
commit 5b306ea845
8 changed files with 29 additions and 29 deletions

View File

@@ -32,7 +32,7 @@
#include "FxMixer.h"
#include "FxMixerView.h"
#include "InstrumentTrack.h"
#include "ladspa_2_lmms.h"
#include "Ladspa2LMMS.h"
#include "MainWindow.h"
#include "Mixer.h"
#include "Pattern.h"
@@ -61,7 +61,7 @@ bbEditor * Engine::s_bbEditor = NULL;
PianoRoll* Engine::s_pianoRoll = NULL;
projectNotes * Engine::s_projectNotes = NULL;
ProjectJournal * Engine::s_projectJournal = NULL;
ladspa2LMMS * Engine::s_ladspaManager = NULL;
Ladspa2LMMS * Engine::s_ladspaManager = NULL;
DummyTrackContainer * Engine::s_dummyTC = NULL;
ControllerRackView * Engine::s_controllerRackView = NULL;
QMap<QString, QString> Engine::s_pluginFileHandling;
@@ -84,7 +84,7 @@ void Engine::init( const bool _has_gui )
s_fxMixer = new FxMixer;
s_bbTrackContainer = new BBTrackContainer;
s_ladspaManager = new ladspa2LMMS;
s_ladspaManager = new Ladspa2LMMS;
s_projectJournal->setJournalling( true );

View File

@@ -1,5 +1,5 @@
/*
* ladspa_2_lmms.cpp - class that identifies and instantiates LADSPA effects
* Ladspa2LMMS.cpp - class that identifies and instantiates LADSPA effects
* for use with LMMS
*
* Copyright (c) 2005-2008 Danny McRae <khjklujn@netscape.net>
@@ -24,10 +24,10 @@
*/
#include "ladspa_2_lmms.h"
#include "Ladspa2LMMS.h"
ladspa2LMMS::ladspa2LMMS()
Ladspa2LMMS::Ladspa2LMMS()
{
l_sortable_plugin_t plugins = getSortedPlugins();
@@ -78,13 +78,13 @@ ladspa2LMMS::ladspa2LMMS()
ladspa2LMMS::~ladspa2LMMS()
Ladspa2LMMS::~Ladspa2LMMS()
{
}
QString ladspa2LMMS::getShortName( const ladspa_key_t & _key )
QString Ladspa2LMMS::getShortName( const ladspa_key_t & _key )
{
QString name = getName( _key );