mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed some compiler warnings in PushNotificationsDemo
This commit is contained in:
parent
ceff63fad7
commit
3767ee3811
1 changed files with 2 additions and 2 deletions
|
|
@ -176,11 +176,11 @@ public:
|
|||
auxActionsView.removeAllDeliveredNotifsButton .onClick = []
|
||||
{ PushNotifications::getInstance()->removeAllDeliveredNotifications(); };
|
||||
#if JUCE_IOS || JUCE_MAC
|
||||
auxActionsView.getPendingNotificationsButton .onClick = [this]
|
||||
auxActionsView.getPendingNotificationsButton .onClick = []
|
||||
{ PushNotifications::getInstance()->getPendingLocalNotifications(); };
|
||||
auxActionsView.removePendingNotifWithIdButton.onClick = [this]
|
||||
{ PushNotifications::getInstance()->removePendingLocalNotification (auxActionsView.pendingNotifIdentifier.getText()); };
|
||||
auxActionsView.removeAllPendingNotifsButton .onClick = [this]
|
||||
auxActionsView.removeAllPendingNotifsButton .onClick = []
|
||||
{ PushNotifications::getInstance()->removeAllPendingLocalNotifications(); };
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue