1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-06 04:00:08 +00:00

Introjucer: avoided Visual Studio 2015 warning.

This commit is contained in:
Timur Doumler 2015-08-12 15:30:10 +01:00
parent 36001a6ff3
commit abf5cb18d5

View file

@ -80,10 +80,10 @@ void DependencyPathPropertyComponent::labelTextChanged (Label*)
{
}
void DependencyPathPropertyComponent::editorShown (Label* /*label*/, TextEditor& textEditor)
void DependencyPathPropertyComponent::editorShown (Label* /*label*/, TextEditor& editor)
{
if (! pathValueSource->isUsingProjectSettings())
textEditor.setText (String::empty, dontSendNotification);
editor.setText (String::empty, dontSendNotification);
}
void DependencyPathPropertyComponent::editorHidden (Label*, TextEditor&)