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

Minor clean-ups.

This commit is contained in:
jules 2015-08-31 19:24:14 +01:00
parent f8047066d6
commit 60f2b0a233
3 changed files with 27 additions and 28 deletions

View file

@ -65,14 +65,14 @@ class JUCE_API SettableTooltipClient : public TooltipClient
public:
//==============================================================================
/** Destructor. */
virtual ~SettableTooltipClient() {}
~SettableTooltipClient() {}
//==============================================================================
/** Assigns a new tooltip to this object. */
virtual void setTooltip (const String& newTooltip) { tooltipString = newTooltip; }
/** Returns the tooltip assigned to this object. */
virtual String getTooltip() { return tooltipString; }
String getTooltip() override { return tooltipString; }
protected:
SettableTooltipClient() {}