Skip to content

Commit 4d2f329

Browse files
authored
Merge pull request #166 from kmichaelfox/development
Cleanup stray debug statements
2 parents ad750b7 + cddeea1 commit 4d2f329

2 files changed

Lines changed: 0 additions & 5 deletions

File tree

Source/Plugins/LfpDisplayNodeAlpha/LfpDisplayCanvas.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ void LfpDisplayCanvas::resized()
150150
if (lfpDisplay->getSingleChannelState())
151151
lfpDisplay->setChannelHeight(viewport->getHeight(),false);
152152

153-
std::cout << "number of channels " << nChans << std::endl;
154153
lfpDisplay->setBounds(0,0,getWidth()-scrollBarThickness, lfpDisplay->getChannelHeight()*lfpDisplay->drawableChannels.size());
155154
}
156155
else

Source/Plugins/LfpDisplayNodeAlpha/LfpDisplayEditor.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ void LfpDisplayEditor::buttonClicked(Button *button)
7474
// (else) initialization errors. lots of time-critical cross dependencies here,
7575
// should be cleaned up
7676
updateSubprocessorSelectorOptions();
77-
//((LfpDisplayCanvas *)canvas.get())->setDrawableSubprocessor(*(inputSubprocessorIndices.begin() + (subprocessorSelection->getSelectedId() - 1)));
78-
// setCanvasDrawableSubprocessor(subprocessorSelection->getSelectedId() - 1);
7977

8078
canvas->update();
8179

@@ -98,7 +96,6 @@ void LfpDisplayEditor::comboBoxChanged(juce::ComboBox *cb)
9896
{
9997
if (cb == subprocessorSelection)
10098
{
101-
// setCanvasDrawableSampleRate(cb->getSelectedId() - 1);
10299
setCanvasDrawableSubprocessor(cb->getSelectedId() - 1);
103100
}
104101
}
@@ -120,7 +117,6 @@ void LfpDisplayEditor::updateSubprocessorSelectorOptions()
120117

121118
if (success) inputSampleRates.set(subProcessorIdx, lfpProcessor->getDataChannel(i)->getSampleRate());
122119

123-
// if (success) std::cout << "\t\tadding subprocessor index " << subProcessorIdx << std::endl;
124120
}
125121

126122
int subprocessorToSet = -1;

0 commit comments

Comments
 (0)