1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Updated ComponentDragger to handle transformed components (this required a change to its parameters). Tidied up some classes with the JUCE_DECLARE_NON_COPYABLE macro. Changed some 3rd-party include statements to use angle-bracket quotes.

This commit is contained in:
Julian Storer 2010-11-29 16:22:06 +00:00
parent a5cf4030f5
commit 952b8c3940
116 changed files with 654 additions and 1127 deletions

View file

@ -95,8 +95,7 @@ private:
var oldValue;
const bool isAddingNewProperty : 1, isDeletingProperty : 1;
SetPropertyAction (const SetPropertyAction&);
SetPropertyAction& operator= (const SetPropertyAction&);
JUCE_DECLARE_NON_COPYABLE (SetPropertyAction);
};
//==============================================================================
@ -152,8 +151,7 @@ private:
const int childIndex;
const bool isDeleting;
AddOrRemoveChildAction (const AddOrRemoveChildAction&);
AddOrRemoveChildAction& operator= (const AddOrRemoveChildAction&);
JUCE_DECLARE_NON_COPYABLE (AddOrRemoveChildAction);
};
//==============================================================================
@ -201,8 +199,7 @@ private:
const SharedObjectPtr parent;
const int startIndex, endIndex;
MoveChildAction (const MoveChildAction&);
MoveChildAction& operator= (const MoveChildAction&);
JUCE_DECLARE_NON_COPYABLE (MoveChildAction);
};