1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +00:00

Avoided an iOS compile warning

This commit is contained in:
jules 2016-01-14 18:03:14 +00:00
parent f88467eca9
commit 39ba4ed577

View file

@ -238,7 +238,7 @@ private:
if (text != nil)
[alert addAction: [UIAlertAction actionWithTitle: text
style: UIAlertActionStyleDefault
handler: ^(UIAlertAction* action) { this->buttonClicked (index); }]];
handler: ^(UIAlertAction*) { this->buttonClicked (index); }]];
}
#else
UIAlertView* alert;