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

Fix build error

This commit is contained in:
ed 2018-03-12 15:20:59 +00:00
parent 58c02823c5
commit ec3831d05b

View file

@ -37,12 +37,12 @@ OwnedArray<AnalyticsDestination>& Analytics::getDestinations()
return destinations;
}
void Analytics::setUserId (const String& newUserId)
void Analytics::setUserId (String newUserId)
{
userId = newUserId;
}
void Analytics::setUserProperties (const StringPairArray& properties)
void Analytics::setUserProperties (StringPairArray properties)
{
userProperties = properties;
}