Core Base Classes for the Light Endpoints
Dependents: mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more
Diff: Preferences.cpp
- Revision:
- 121:40bb95a10a0e
- Parent:
- 120:edf33bd41e4f
- Child:
- 122:21be9cc9e63d
--- a/Preferences.cpp Thu Mar 20 02:24:47 2014 +0000 +++ b/Preferences.cpp Thu Mar 20 02:30:06 2014 +0000 @@ -87,7 +87,7 @@ // HACK: fix up coords because IOC's POINT() macro does not like commas void Preferences::fixCoordsForIOC() { - int index = this.indexOfPreference("coords"); + int index = this->indexOfPreference("coords"); if (index >= 0) { // remove the comma... for(int i=0;i<strlen(this->m_values[index]);++i) if (this->m_values[index][i] == ',') this->m_values[index][i] = ' ';