1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Reorganised some of the juce source tree folders. Added a new JUCE_DEPRECATED macro, and tested it by renaming Button::addButtonListener to Button::addListener for consistency with other widgets. Added Samplitude to the AudioHostType class. Fixed window maximising in win32.

This commit is contained in:
Julian Storer 2010-12-21 12:44:45 +00:00
parent c8799c9107
commit 7becff2aa4
169 changed files with 2140 additions and 2007 deletions

View file

@ -61,7 +61,7 @@ BEGIN_JUCE_NAMESPACE
#include "juce_VSTPluginFormat.h"
#include "../../../threads/juce_Process.h"
#include "../../../threads/juce_ScopedLock.h"
#include "../../../core/juce_Random.h"
#include "../../../maths/juce_Random.h"
#include "../../../io/files/juce_DirectoryIterator.h"
#include "../../../events/juce_Timer.h"
#include "../../../events/juce_AsyncUpdater.h"
@ -1152,10 +1152,10 @@ public:
plugin (plugin_),
isOpen (false),
wasShowing (false),
pluginRefusesToResize (false),
recursiveResize (false),
pluginWantsKeys (false),
alreadyInside (false),
recursiveResize (false)
pluginRefusesToResize (false),
alreadyInside (false)
{
#if JUCE_WINDOWS
sizeCheckCount = 0;