1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

Added a couple of missing 'override' keywords

This commit is contained in:
jules 2015-11-23 17:29:05 +00:00
parent eed5aa641d
commit 4d3fc5a3d9
2 changed files with 5 additions and 7 deletions

View file

@ -152,7 +152,7 @@ private:
uint32 lastTime;
AnimationTask* findTaskFor (Component*) const noexcept;
void timerCallback();
void timerCallback() override;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ComponentAnimator)
};

View file

@ -106,11 +106,11 @@ public:
//==============================================================================
/** @internal */
void getContentSize (int& w, int& h);
void getContentSize (int& w, int& h) override;
/** @internal */
void paintContent (Graphics& g, int w, int h);
void paintContent (Graphics& g, int w, int h) override;
/** @internal */
void timerCallback();
void timerCallback() override;
private:
//==============================================================================
@ -120,9 +120,7 @@ private:
bool deleteAfterUse;
void createLayout (const AttributedString&);
void init (int numMillisecondsBeforeRemoving,
bool removeWhenMouseClicked,
bool deleteSelfAfterUse);
void init (int, bool, bool);
void hide (bool fadeOut);
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (BubbleMessageComponent)