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

Workarounds for VC6.

This commit is contained in:
Julian Storer 2010-11-17 14:01:14 +00:00
parent cc607e0a38
commit b952084419
44 changed files with 851 additions and 686 deletions

View file

@ -599,12 +599,12 @@ void ComboBox::mouseUp (const MouseEvent& e2)
}
//==============================================================================
void ComboBox::addListener (Listener* const listener)
void ComboBox::addListener (ComboBoxListener* const listener)
{
listeners.add (listener);
}
void ComboBox::removeListener (Listener* const listener)
void ComboBox::removeListener (ComboBoxListener* const listener)
{
listeners.remove (listener);
}