1
0
Fork 0
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:
ed 2018-03-12 14:53:35 +00:00
parent 2f52fa205a
commit 83f6fd2cfa

View file

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