mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Got rid of some very old legacy VC6 workaround typedefs
This commit is contained in:
parent
90f3d11ab8
commit
a7e3339f86
15 changed files with 12 additions and 55 deletions
|
|
@ -623,8 +623,8 @@ void ComboBox::setScrollWheelEnabled (bool enabled) noexcept
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
void ComboBox::addListener (ComboBoxListener* listener) { listeners.add (listener); }
|
||||
void ComboBox::removeListener (ComboBoxListener* listener) { listeners.remove (listener); }
|
||||
void ComboBox::addListener (ComboBox::Listener* l) { listeners.add (l); }
|
||||
void ComboBox::removeListener (ComboBox::Listener* l) { listeners.remove (l); }
|
||||
|
||||
void ComboBox::handleAsyncUpdate()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue