mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Made Analytics::setUserId() and ::setUserProperties() take copies of their arguments instead of references
This commit is contained in:
parent
2f52fa205a
commit
83f6fd2cfa
1 changed files with 2 additions and 2 deletions
|
|
@ -64,14 +64,14 @@ public:
|
|||
|
||||
@param newUserId the userId to add to AnalyticsEvents
|
||||
*/
|
||||
void setUserId (const String& newUserId);
|
||||
void setUserId (String newUserId);
|
||||
|
||||
/** Sets some user properties that will be added to all AnalyticsEvents sent
|
||||
to AnalyticsDestinations.
|
||||
|
||||
@param properties the userProperties to add to AnalyticsEvents
|
||||
*/
|
||||
void setUserProperties (const StringPairArray& properties);
|
||||
void setUserProperties (StringPairArray properties);
|
||||
|
||||
/** Sends an AnalyticsEvent to all AnalyticsDestinations.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue