diff options
author | jin0.kim <jin0.kim@samsung.com> | 2016-04-26 13:33:11 +0830 |
---|---|---|
committer | jin0.kim <jin0.kim@samsung.com> | 2016-04-26 13:33:11 +0830 |
commit | 41c58bfcb5ddd4c4d3f0f1c0597a4567c0bca6ba (patch) | |
tree | e7de403b2ebd34a9a7e818ec43bf7b8eb45a1d32 | |
parent | ab72290154976ebc0c8244a0b84aaaab033c469b (diff) | |
download | quickpanel-accepted/tizen_tv.tar.gz quickpanel-accepted/tizen_tv.tar.bz2 quickpanel-accepted/tizen_tv.zip |
bluetooth icon does not show upsubmit/tizen_3.0_ivi/20161010.000006submit/tizen/20160426.052607accepted/tizen/wearable/20160426.103313accepted/tizen/tv/20160426.103207accepted/tizen/mobile/20160426.103316accepted/tizen/ivi/20160426.103258accepted/tizen/common/20160426.143610accepted/tizen/3.0/ivi/20161011.062345accepted/tizen_wearableaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_common
Change-Id: Ie9013a8ed8dce79c402dfc5702d419842182be2c
-rwxr-xr-x | daemon/settings/modules/bluetooth.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/daemon/settings/modules/bluetooth.c b/daemon/settings/modules/bluetooth.c index e32764b..a68bccc 100755 --- a/daemon/settings/modules/bluetooth.c +++ b/daemon/settings/modules/bluetooth.c @@ -100,7 +100,9 @@ static void _status_update(QP_Module_Setting *module, int flag_extra_1, int flag retif(module == NULL, , "Invalid parameter!"); ret = bt_adapter_get_state(&adapter_state); - retif(ret != BT_ERROR_NONE, , "bt_adapter_get_state failed"); + if (ret != BT_ERROR_NONE) { + DBG("bt_adapter_get_state failed [%d]", ret); + } if (adapter_state == BT_ADAPTER_ENABLED) { quickpanel_setting_module_icon_state_set(module, ICON_VIEW_STATE_ON); |