Change-Id: Ibf75fe7a905578be715715b2c0873c6aff9fcd19
for ( unsigned int i = 0, count = settingsMap.Count(); i < count; ++i )
{
- std::string key = settingsMap.GetKey( i );
+ Property::Key key = settingsMap.GetKeyAt( i );
+ if( key.type == Property::Key::INDEX )
+ {
+ continue;
+ }
+
Property::Value item = settingsMap.GetValue(i);
if ( key == TOKEN_STRING( ACTION_BUTTON ) )
{
DALI_LOG_INFO( gLogFilter, Debug::General, "Provided Settings Key not supported\n" );
}
- }
+ }
}
void EnablePrediction(const bool enable)