Browse Source

Update juced for new juce changes

tags/2018-04-16
falkTX 7 years ago
parent
commit
c2802be7af
5 changed files with 6 additions and 15 deletions
  1. +0
    -14
      libs/juced/build-juced/AppConfig.h
  2. +1
    -0
      libs/juced/build-juced/AppConfig.h
  3. +2
    -0
      libs/juced/source/audio/processors/jucetice_AudioSourceProcessor.h
  4. +2
    -0
      libs/juced/source/base/jucetice_AudioPlugin.h
  5. +1
    -1
      libs/juced/source/controls/graph/jucetice_GraphNodeComponent.cpp

+ 0
- 14
libs/juced/build-juced/AppConfig.h View File

@@ -1,14 +0,0 @@
/*
==============================================================================
Build options for juced static library
==============================================================================
*/
#ifndef BUILD_JUCED_APPCONFIG_H_INCLUDED
#define BUILD_JUCED_APPCONFIG_H_INCLUDED
#include "../build-juce/AppConfig.h"
#endif // BUILD_JUCED_APPCONFIG_H_INCLUDED

+ 1
- 0
libs/juced/build-juced/AppConfig.h View File

@@ -0,0 +1 @@
../../juce/build-juce/AppConfig.h

+ 2
- 0
libs/juced/source/audio/processors/jucetice_AudioSourceProcessor.h View File

@@ -70,7 +70,9 @@ public:
void getStateInformation (MemoryBlock& destData) override { }
void setStateInformation (const void* data,int sizeInBytes) override { }

#if ! JUCE_AUDIOPROCESSOR_NO_GUI
AudioProcessorEditor* createEditor() override { return 0; }
#endif

private:



+ 2
- 0
libs/juced/source/base/jucetice_AudioPlugin.h View File

@@ -877,6 +877,7 @@ public:
*/
MidiKeyboardState& getKeyboardState () { return keyboardState; }
#if ! JUCE_AUDIOPROCESSOR_NO_GUI
//==============================================================================
/**
Create the default editor for the processor
@@ -890,6 +891,7 @@ public:
{
return 0;
}
#endif
//==============================================================================
juce_UseDebuggingNewOperator


+ 1
- 1
libs/juced/source/controls/graph/jucetice_GraphNodeComponent.cpp View File

@@ -120,7 +120,7 @@ void GraphNodeComponent::mouseDrag (const MouseEvent& e)
if (listener)
listener->nodeMoved (this, x - lastX, y - lastY);
constrainer.applyBoundsToComponent (this, bounds);
constrainer.applyBoundsToComponent (*this, bounds);
}
}


Loading…
Cancel
Save