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

Added some "override" annotations.

This commit is contained in:
jules 2013-07-08 19:05:14 +01:00
parent 23f59fd99c
commit 5918d039ce
53 changed files with 245 additions and 248 deletions

View file

@ -214,11 +214,11 @@ public:
//==============================================================================
/** @internal */
bool keyPressed (const KeyPress&, Component* originatingComponent);
bool keyPressed (const KeyPress&, Component*) override;
/** @internal */
bool keyStateChanged (bool isKeyDown, Component* originatingComponent);
bool keyStateChanged (bool isKeyDown, Component*) override;
/** @internal */
void globalFocusChanged (Component*);
void globalFocusChanged (Component*) override;
private:
//==============================================================================
@ -241,7 +241,6 @@ private:
OwnedArray <KeyPressTime> keysDown;
void handleMessage (const Message&);
void invokeCommand (const CommandID, const KeyPress&, const bool isKeyDown,
const int millisecsSinceKeyPressed, Component* originator) const;