Rename note to Note

This commit is contained in:
Lukas W
2014-11-26 01:14:52 +01:00
parent e045f1dd19
commit aaeb5216ad
27 changed files with 116 additions and 116 deletions

View File

@@ -12,7 +12,7 @@
#include "Engine.h"
#include "Instrument.h"
#include "InstrumentTrack.h"
#include "note.h"
#include "Note.h"
#include "Pattern.h"
#include "Track.h"
#include "bb_track.h"
@@ -271,7 +271,7 @@ bool HydrogenImport::readSong()
int i = pattern_count - 1 + nbb;
pattern_id[sName] = pattern_count - 1;
Pattern*p = dynamic_cast<Pattern*>( drum_track[instrId]->getTCO( i ) );
note n;
Note n;
n.setPos( nPosition );
if ( (nPosition + 48) <= nSize )
{

View File

@@ -244,7 +244,7 @@ public:
}
void addNote( note & n )
void addNote( Note & n )
{
if( !p || n.pos() > lastEnd + DefaultTicksPerTact )
{
@@ -378,7 +378,7 @@ bool MidiImport::readSMF( TrackContainer* tc )
smfMidiChannel * ch = chs[evt->chan].create( tc );
Alg_note_ptr noteEvt = dynamic_cast<Alg_note_ptr>( evt );
note n( noteEvt->get_duration() * ticksPerBeat,
Note n( noteEvt->get_duration() * ticksPerBeat,
noteEvt->get_start_time() * ticksPerBeat,
noteEvt->get_identifier() - 12,
noteEvt->get_loud());

View File

@@ -414,7 +414,7 @@ struct FL_Channel : public FL_Plugin
int fxChannel;
int layerParent;
typedef QList<QPair<int, note> > noteVector;
typedef QList<QPair<int, Note> > noteVector;
noteVector notes;
QList<int> dots;
@@ -1313,7 +1313,7 @@ if( p.currentEffectChannel <= NumFLFxChannels )
8 ) );
pos /= (4*ppq) / DefaultTicksPerTact;
len /= (4*ppq) / DefaultTicksPerTact;
note n( len, pos, key, vol * 100 / 128,
Note n( len, pos, key, vol * 100 / 128,
pan*200 / 128 - 100 );
if( ch < p.numChannels )
{

View File

@@ -30,7 +30,7 @@
#include <QVector>
#include "ImportFilter.h"
#include "note.h"
#include "Note.h"

View File

@@ -168,7 +168,7 @@ public:
private:
void processNote( NotePlayHandle * n );
void initNote(lb302Note *note);
void initNote(lb302Note *Note);
void initSlide();
private:

View File

@@ -34,7 +34,7 @@
#include "Instrument.h"
#include "InstrumentView.h"
#include "note.h"
#include "Note.h"
#include "knob.h"
#include "AutomatableModel.h"

View File

@@ -26,7 +26,7 @@
#define LOCAL_ZYNADDSUBFX_H
#include "MidiEvent.h"
#include "note.h"
#include "Note.h"
class Master;
class NulEngine;

View File

@@ -30,7 +30,7 @@
#include <queue>
#define BUILD_REMOTE_PLUGIN_CLIENT
#include "note.h"
#include "Note.h"
#include "RemotePlugin.h"
#include "RemoteZynAddSubFx.h"
#include "LocalZynAddSubFx.h"