mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a windows warning in the previous commit
This commit is contained in:
parent
64be913fa2
commit
e71084a7e9
1 changed files with 3 additions and 3 deletions
|
|
@ -545,10 +545,10 @@ void ComboBox::showPopup()
|
|||
menu.addItem (1, noChoicesMessage, false, false);
|
||||
}
|
||||
|
||||
auto& lookAndFeel = getLookAndFeel();
|
||||
auto& lf = getLookAndFeel();
|
||||
|
||||
menu.setLookAndFeel (&lookAndFeel);
|
||||
menu.showMenuAsync (lookAndFeel.getOptionsForComboBoxPopupMenu (*this, *label),
|
||||
menu.setLookAndFeel (&lf);
|
||||
menu.showMenuAsync (lf.getOptionsForComboBoxPopupMenu (*this, *label),
|
||||
ModalCallbackFunction::forComponent (comboBoxPopupMenuFinishedCallback, this));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue