Browse Source

Avoided an iOS compile warning

tags/2021-05-28
jules 9 years ago
parent
commit
39ba4ed577
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/native/juce_ios_Windowing.mm

+ 1
- 1
modules/juce_gui_basics/native/juce_ios_Windowing.mm 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;


Loading…
Cancel
Save