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

@@ -46,7 +46,7 @@ class PianoRoll;
class projectNotes;
class Song;
class SongEditor;
class ladspa2LMMS;
class Ladspa2LMMS;
class ControllerRackView;
@@ -133,7 +133,7 @@ public:
return s_automationEditor;
}
static ladspa2LMMS * getLADSPAManager()
static Ladspa2LMMS * getLADSPAManager()
{
return s_ladspaManager;
}
@@ -192,7 +192,7 @@ private:
static bbEditor * s_bbEditor;
static PianoRoll* s_pianoRoll;
static projectNotes * s_projectNotes;
static ladspa2LMMS * s_ladspaManager;
static Ladspa2LMMS * s_ladspaManager;
static QMap<QString, QString> s_pluginFileHandling;

View File

@@ -1,5 +1,5 @@
/*
* ladspa_2_lmms.h - class that identifies and instantiates LADSPA effects
* Ladspa2LMMS.h - class that identifies and instantiates LADSPA effects
* for use with LMMS
*
* Copyright (c) 2005-2008 Danny McRae <khjklujn@netscape.net>
@@ -23,14 +23,14 @@
*
*/
#ifndef _LADSPA_2_LMMS_H
#define _LADSPA_2_LMMS_H
#ifndef LADSPA_2_LMMS_H
#define LADSPA_2_LMMS_H
#include "ladspa_manager.h"
class EXPORT ladspa2LMMS : public ladspaManager
class EXPORT Ladspa2LMMS : public ladspaManager
{
public:
@@ -62,8 +62,8 @@ public:
QString getShortName( const ladspa_key_t & _key );
private:
ladspa2LMMS();
virtual ~ladspa2LMMS();
Ladspa2LMMS();
virtual ~Ladspa2LMMS();
l_sortable_plugin_t m_instruments;
l_sortable_plugin_t m_validEffects;