Browse Source

Minor clean-ups.

tags/2021-05-28
Julian Storer 14 years ago
parent
commit
73f17dba08
4 changed files with 1597 additions and 1593 deletions
  1. +1589
    -1589
      extras/audio plugins/wrapper/VST/juce_VST_Wrapper.cpp
  2. +4
    -2
      juce_amalgamated.h
  3. +2
    -2
      src/gui/components/juce_Component.h
  4. +2
    -0
      src/gui/components/juce_ModalComponentManager.h

+ 1589
- 1589
extras/audio plugins/wrapper/VST/juce_VST_Wrapper.cpp
File diff suppressed because it is too large
View File


+ 4
- 2
juce_amalgamated.h View File

@@ -25683,6 +25683,8 @@ private:
void endModal (Component* component, int returnValue); void endModal (Component* component, int returnValue);
void endModal (Component* component); void endModal (Component* component);


ModalComponentManager (const ModalComponentManager&);
ModalComponentManager& operator= (const ModalComponentManager&);
}; };


#endif // __JUCE_MODALCOMPONENTMANAGER_JUCEHEADER__ #endif // __JUCE_MODALCOMPONENTMANAGER_JUCEHEADER__
@@ -26210,8 +26212,8 @@ public:


/** Adds a child component to this one, and also makes the child visible if it isn't. /** Adds a child component to this one, and also makes the child visible if it isn't.


Quite a useful function, this is just the same as calling addChildComponent()
followed by setVisible (true) on the child. See addChildComponent() for more details.
Quite a useful function, this is just the same as calling setVisible (true) on the child
and then addChildComponent(). See addChildComponent() for more details.
*/ */
void addAndMakeVisible (Component* child, int zOrder = -1); void addAndMakeVisible (Component* child, int zOrder = -1);




+ 2
- 2
src/gui/components/juce_Component.h View File

@@ -577,8 +577,8 @@ public:
/** Adds a child component to this one, and also makes the child visible if it isn't. /** Adds a child component to this one, and also makes the child visible if it isn't.
Quite a useful function, this is just the same as calling addChildComponent()
followed by setVisible (true) on the child. See addChildComponent() for more details.
Quite a useful function, this is just the same as calling setVisible (true) on the child
and then addChildComponent(). See addChildComponent() for more details.
*/ */
void addAndMakeVisible (Component* child, int zOrder = -1); void addAndMakeVisible (Component* child, int zOrder = -1);


+ 2
- 0
src/gui/components/juce_ModalComponentManager.h View File

@@ -138,6 +138,8 @@ private:
void endModal (Component* component, int returnValue); void endModal (Component* component, int returnValue);
void endModal (Component* component); void endModal (Component* component);
ModalComponentManager (const ModalComponentManager&);
ModalComponentManager& operator= (const ModalComponentManager&);
}; };


Loading…
Cancel
Save