mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
Small change for DLL build.
This commit is contained in:
parent
b305389d46
commit
3578465cba
1 changed files with 2 additions and 4 deletions
|
|
@ -480,7 +480,7 @@ private:
|
|||
|| mouseDowns[0].position.getDistanceFrom (screenPos) >= 4;
|
||||
}
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE (MouseInputSourceInternal);
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MouseInputSourceInternal);
|
||||
};
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -489,9 +489,7 @@ MouseInputSource::MouseInputSource (const int index, const bool isMouseDevice)
|
|||
pimpl = new MouseInputSourceInternal (*this, index, isMouseDevice);
|
||||
}
|
||||
|
||||
MouseInputSource::~MouseInputSource()
|
||||
{
|
||||
}
|
||||
MouseInputSource::~MouseInputSource() {}
|
||||
|
||||
bool MouseInputSource::isMouse() const { return pimpl->isMouseDevice; }
|
||||
bool MouseInputSource::isTouch() const { return ! isMouse(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue