Skip to content

Commit 155d54c

Browse files
committed
Fix capitalization
1 parent ff148b0 commit 155d54c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Source/Processors/Channel/InfoObjects.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ SpikeChannel::SpikeChannel(ElectrodeTypes type, GenericProcessor* source, const
511511
jassert(n == getNumChannels(type));
512512
for (int i = 0; i < n; i++)
513513
{
514-
sourceChannelInfo info;
514+
SourceChannelInfo info;
515515
const DataChannel* chan = sourceChannels[i];
516516
info.processorID = chan->getSourceNodeID();
517517
info.subProcessorID = chan->getSubProcessorIdx();
@@ -535,7 +535,7 @@ SpikeChannel::ElectrodeTypes SpikeChannel::getChannelType() const
535535
return m_type;
536536
}
537537

538-
Array<sourceChannelInfo> SpikeChannel::getSourceChannelInfo() const
538+
Array<SourceChannelInfo> SpikeChannel::getSourceChannelInfo() const
539539
{
540540
return m_sourceInfo;
541541
}

Source/Processors/Channel/InfoObjects.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class GenericProcessor;
3535
/**
3636
Structure with the basic info that identifies a channel
3737
*/
38-
struct sourceChannelInfo
38+
struct SourceChannelInfo
3939
{
4040
uint16 processorID;
4141
uint16 subProcessorID;
@@ -392,7 +392,7 @@ class PLUGIN_API SpikeChannel :
392392
ElectrodeTypes getChannelType() const;
393393

394394
/** Returns an array with info about the channels from which the spikes originate */
395-
Array<sourceChannelInfo> getSourceChannelInfo() const;
395+
Array<SourceChannelInfo> getSourceChannelInfo() const;
396396

397397
/** Sets the number of samples, pre and post peak */
398398
void setNumSamples(unsigned int preSamples, unsigned int postSamples);
@@ -429,7 +429,7 @@ class PLUGIN_API SpikeChannel :
429429
private:
430430
bool checkEqual(const InfoObjectCommon& other, bool similar) const override;
431431
const ElectrodeTypes m_type;
432-
Array<sourceChannelInfo> m_sourceInfo;
432+
Array<SourceChannelInfo> m_sourceInfo;
433433
unsigned int m_numPreSamples{ 8 };
434434
unsigned int m_numPostSamples{ 32 };
435435
Array<float> m_channelBitVolts;

0 commit comments

Comments
 (0)