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

Documentation fixes

This commit is contained in:
Tom Poole 2018-03-10 09:48:51 +00:00
parent 10be540f19
commit 89d9ad0856

View file

@ -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,