Skip to content

Commit

Permalink
move debug ui
Browse files Browse the repository at this point in the history
  • Loading branch information
connorlbark committed Oct 6, 2024
1 parent d8d05c1 commit 2addd4d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion projects/disperse-juce/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ target_sources(DispersePlugin
PRIVATE
PluginEditor.cpp
PluginProcessor.cpp
ui/DebugUI.cpp)
debug_ui/DebugUI.cpp)

# `target_compile_definitions` adds some preprocessor definitions to our target. In a Projucer
# project, these might be passed in the 'Preprocessor Definitions' field. JUCE modules also make use
Expand Down
4 changes: 1 addition & 3 deletions projects/disperse-juce/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ AudioPluginAudioProcessorEditor::AudioPluginAudioProcessorEditor (AudioPluginAud
addAndMakeVisible(debugUI);
}

AudioPluginAudioProcessorEditor::~AudioPluginAudioProcessorEditor()
{
}
AudioPluginAudioProcessorEditor::~AudioPluginAudioProcessorEditor() = default;

//==============================================================================
void AudioPluginAudioProcessorEditor::paint (juce::Graphics& g)
Expand Down
2 changes: 1 addition & 1 deletion projects/disperse-juce/PluginEditor.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "PluginProcessor.h"
#include "ui/DebugUI.h"
#include "debug_ui/DebugUI.h"

//==============================================================================
class AudioPluginAudioProcessorEditor : public juce::AudioProcessorEditor
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 2addd4d

Please sign in to comment.