mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Workaround for VS2005 compiler bug.
This commit is contained in:
parent
6c37ffdf48
commit
d284f892b5
2 changed files with 1 additions and 3 deletions
|
|
@ -460,5 +460,3 @@ void Label::textEditorFocusLost (TextEditor& ed)
|
|||
{
|
||||
textEditorTextChanged (ed);
|
||||
}
|
||||
|
||||
void Label::Listener::editorShown (Label*, TextEditor&) {}
|
||||
|
|
|
|||
|
|
@ -184,7 +184,7 @@ public:
|
|||
virtual void labelTextChanged (Label* labelThatHasChanged) = 0;
|
||||
|
||||
/** Called when a Label goes into editing mode and displays a TextEditor. */
|
||||
virtual void editorShown (Label*, TextEditor& textEditorShown);
|
||||
virtual void editorShown (Label*, TextEditor&) {}
|
||||
};
|
||||
|
||||
/** Registers a listener that will be called when the label's text changes. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue