eeze/sensor/tizen: Fix typos to let it build for tizen
authorStefan Schmidt <s.schmidt@samsung.com>
Wed, 24 Apr 2013 14:59:16 +0000 (15:59 +0100)
committerStefan Schmidt <s.schmidt@samsung.com>
Wed, 24 Apr 2013 15:01:42 +0000 (16:01 +0100)
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. :)

src/modules/eeze/sensor/tizen/tizen.c

index 5217aea..93bea03 100644 (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;
 }