mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Changed some pass-by-references to pass-by-value to improve compiler optimisation.
This commit is contained in:
parent
51df5143bf
commit
c7506df13f
140 changed files with 757 additions and 756 deletions
|
|
@ -166,11 +166,11 @@ public:
|
|||
|
||||
//==============================================================================
|
||||
/** @internal */
|
||||
void handleEvent (ComponentPeer*, const Point<int>&, int64 time, const ModifierKeys&);
|
||||
void handleEvent (ComponentPeer*, Point<int>, int64 time, const ModifierKeys);
|
||||
/** @internal */
|
||||
void handleWheel (ComponentPeer*, const Point<int>&, int64 time, const MouseWheelDetails&);
|
||||
void handleWheel (ComponentPeer*, Point<int>, int64 time, const MouseWheelDetails&);
|
||||
/** @internal */
|
||||
void handleMagnifyGesture (ComponentPeer*, const Point<int>&, int64 time, float scaleFactor);
|
||||
void handleMagnifyGesture (ComponentPeer*, Point<int>, int64 time, float scaleFactor);
|
||||
|
||||
private:
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue