1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-28 02:30:05 +00:00

Minor documentation fixes

This commit is contained in:
tpoole 2017-10-06 12:33:31 +01:00
parent b0866b6a5f
commit aa338866fb
3 changed files with 5 additions and 1 deletions

View file

@ -212,6 +212,7 @@ private:
{
typedef ReferenceCountedObjectPtr<MyClass> Ptr;
...
}
@endcode
@see ReferenceCountedObject, ReferenceCountedObjectArray

View file

@ -55,6 +55,7 @@ namespace juce
if (xml != nullptr && xml->hasTagName ("foobar"))
{
...etc
}
@endcode
@see XmlElement

View file

@ -184,13 +184,15 @@ public:
bool isInAppPurchasesSupported() const;
/** Asynchronously requests information for products with given ids. Upon completion, for each enquired product
there is going to be a corresponding @class Product object.
there is going to be a corresponding Product object.
If there is no information available for the given product identifier, it will be ignored.
*/
void getProductsInformation (const StringArray& productIdentifiers);
/** Asynchronously requests to buy a product with given id.
@param productIdentifier The product identifier.
@param isSubscription (Android only) defines if a product a user wants to buy is a subscription or a one-time purchase.
On iOS, type of the product is derived implicitly.