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:
parent
f8047066d6
commit
60f2b0a233
3 changed files with 27 additions and 28 deletions
|
|
@ -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() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue