From: Taejin Woo Date: Mon, 7 Sep 2015 03:01:56 +0000 (+0900) Subject: Change the enum value related with feedback X-Git-Tag: submit/tizen_mobile/20150907.042147^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33e781fea1a96940a09c1773fe17bfe5e4bf37d4;p=platform%2Fcore%2Fconnectivity%2Fbt-syspopup.git Change the enum value related with feedback Change-Id: I965382c0bf8c918f800bdb8b3924a3f1d21ae064 Signed-off-by: Taejin Woo --- diff --git a/src/bt-syspopup-w.c b/src/bt-syspopup-w.c index d4bb8ce..218f212 100644 --- a/src/bt-syspopup-w.c +++ b/src/bt-syspopup-w.c @@ -218,7 +218,7 @@ static void __bluetooth_notify_event(feedback_pattern_e feedback) static gboolean __bluetooth_pairing_pattern_cb(gpointer data) { - __bluetooth_notify_event(FEEDBACK_PATTERN_BT_WAITING); + __bluetooth_notify_event(FEEDBACK_PATTERN_NONE); return TRUE; } @@ -2298,12 +2298,12 @@ DONE: BT_ERR("Fail to change LCD"); if (ad->event_type == BT_EVENT_HANDSFREE_DISCONNECT_REQUEST) { - __bluetooth_notify_event(FEEDBACK_PATTERN_DISCONNECTED); + __bluetooth_notify_event(FEEDBACK_PATTERN_BT_DISCONNECTED); } else if (ad->event_type == BT_EVENT_HANDSFREE_CONNECT_REQUEST) { - __bluetooth_notify_event(FEEDBACK_PATTERN_CONNECTED); + __bluetooth_notify_event(FEEDBACK_PATTERN_BT_CONNECTED); } else if (ad->event_type == BT_EVENT_PASSKEY_CONFIRM_REQUEST || ad->event_type == BT_EVENT_SYSTEM_RESET_REQUEST) { - __bluetooth_notify_event(FEEDBACK_PATTERN_BT_PAIRING); + __bluetooth_notify_event(FEEDBACK_PATTERN_NONE); ad->viberation_id = g_timeout_add(BT_VIBERATION_INTERVAL, __bluetooth_pairing_pattern_cb, NULL); __lock_display();