eeze/sensor/tizen: Fix typos to let it build for tizen

Finally have a way to compile the merged efl tree against the latest tizen
things. Only three typos after all this changes it quite good imho. Zero
would have been better though. :)
This commit is contained in:
Stefan Schmidt 2013-04-24 15:59:16 +01:00
parent daac3fb794
commit 5e4d26a1aa
1 changed files with 3 additions and 3 deletions

View File

@ -731,7 +731,7 @@ proximity_read_cb(unsigned long long timestamp, float distance, void *user_data)
return;
}
/* We have to set this ourselves because we don't get it for this type */
bj->accuracy = -1;
obj->accuracy = -1;
obj->data[0] = distance;
obj->timestamp = clock_convert(timestamp);
ecore_event_add(EEZE_SENSOR_EVENT_PROXIMITY, obj, _dummy_free, NULL);
@ -1316,9 +1316,9 @@ eeze_sensor_tizen_init(void)
sensor_start(sensor_handle, SENSOR_MOTION_FACEDOWN);
sensor_start(sensor_handle, SENSOR_MOTION_DOUBLETAP);
sensor_motion_doubletap_set_cb(sensor_handle, doubletap_cb,
eeze_sensor_obj_get(EEZE_SENSOR_TYPE_DOUBLETAP));
eeze_sensor_obj_get(EEZE_SENSOR_TYPE_MOTION_DOUBLETAP));
sensor_motion_facedown_set_cb(sensor_handle, facedown_cb,
eeze_sensor_obj_get(EEZE_SENSOR_TYPE_FACEDOWN));
eeze_sensor_obj_get(EEZE_SENSOR_TYPE_MOTION_FACEDOWN));
return EINA_TRUE;
}