diff --git a/modules/juce_gui_extra/misc/juce_PushNotifications.h b/modules/juce_gui_extra/misc/juce_PushNotifications.h index 66cf62142d..daa06b5193 100644 --- a/modules/juce_gui_extra/misc/juce_PushNotifications.h +++ b/modules/juce_gui_extra/misc/juce_PushNotifications.h @@ -179,7 +179,7 @@ public: number of actions to be presented, so always present most important actions first. Available from Android API 16 or above. */ - /**< Used to represent a progress of some operation. */ + /** Used to represent a progress of some operation. */ struct Progress { int max = 0; /**< Max possible value of a progress. A typical usecase is to set max to 100 and increment @@ -253,7 +253,7 @@ public: Colour ledColour; /**< Optional: Sets the led colour. The hardware will do its best to approximate the colour. The default colour will be used if ledColour is not set. */ - /**< Allows to control the time the device's led is on and off. */ + /** Allows to control the time the device's led is on and off. */ struct LedBlinkPattern { int msToBeOn = 0; /**< The led will be on for the given number of milliseconds, after which it will turn off. */ @@ -282,7 +282,7 @@ public: bool alertOnlyOnce = false; /**< Optional: Set this flag if you would only like the sound, vibrate and ticker to be played if the notification is not already showing. */ - /**< Controls timestamp visibility and format. */ + /** Controls timestamp visibility and format. */ enum TimestampVisibility { off, /**< Do not show timestamp. */ @@ -293,7 +293,7 @@ public: TimestampVisibility timestampVisibility = normal; /**< Optional. */ - /**< Controls badge icon type to use if a notification is shown as a badge. Available from Android API 26 or above. */ + /** Controls badge icon type to use if a notification is shown as a badge. Available from Android API 26 or above. */ enum BadgeIconType { none,