Skip to content

Commit b86283d

Browse files
committed
Fix incorrect class declarations
1 parent 022bd10 commit b86283d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Source/SpectrogramComponent.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ class SpectrogramComponent : public juce::Component,
9696
void timerCallback() override;
9797
void drawNextLineOfSpectrogram();
9898

99-
void SpectrogramComponent::drawLinearSpectrogram(int x, std::vector<float>& dBColumn, const int imageHeight, const float maxFreq);
100-
void SpectrogramComponent::drawMelSpectrogram(int x, std::vector<float>& dBColumn, const int imageHeight);
101-
void SpectrogramComponent::drawMFCC(int x, std::vector<float>& dBColumn, const int imageHeight);
102-
void SpectrogramComponent::drawLinearWithCentroid(int x, std::vector<float>& dBColumn, const int imageHeight, const float maxFreq);
103-
void SpectrogramComponent::drawChroma(int x, std::vector<float>& dBColumn, const int imageHeight);
99+
void drawLinearSpectrogram(int x, std::vector<float>& dBColumn, const int imageHeight, const float maxFreq);
100+
void drawMelSpectrogram(int x, std::vector<float>& dBColumn, const int imageHeight);
101+
void drawMFCC(int x, std::vector<float>& dBColumn, const int imageHeight);
102+
void drawLinearWithCentroid(int x, std::vector<float>& dBColumn, const int imageHeight, const float maxFreq);
103+
void drawChroma(int x, std::vector<float>& dBColumn, const int imageHeight);
104104

105105
SpectrogramMode currentMode = SpectrogramMode::Linear;
106106

0 commit comments

Comments
 (0)