mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Enabled some more warning flags in Xcode, and fixed the problems they caused
This commit is contained in:
parent
6bb7618e1e
commit
cadac817c6
228 changed files with 353 additions and 337 deletions
|
|
@ -62,7 +62,7 @@ public:
|
|||
setAlwaysOnTop (true);
|
||||
}
|
||||
|
||||
~DragImageComponent()
|
||||
~DragImageComponent() override
|
||||
{
|
||||
owner.dragImageComponents.remove (owner.dragImageComponents.indexOf (this), false);
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public:
|
|||
MouseInactivityDetector (Component& target);
|
||||
|
||||
/** Destructor. */
|
||||
~MouseInactivityDetector();
|
||||
~MouseInactivityDetector() override;
|
||||
|
||||
/** Sets the time for which the mouse must be still before the callback
|
||||
is triggered.
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class JUCE_API SettableTooltipClient : public TooltipClient
|
|||
public:
|
||||
//==============================================================================
|
||||
/** Destructor. */
|
||||
~SettableTooltipClient() {}
|
||||
~SettableTooltipClient() override {}
|
||||
|
||||
//==============================================================================
|
||||
/** Assigns a new tooltip to this object. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue