From: Sung-jae Park Date: Mon, 15 Jul 2013 03:44:39 +0000 (+0900) Subject: Fix the invalid error code of accessibility CB. X-Git-Tag: accepted/tizen/20131022.083701^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae9170a9da91789a4f5c0b3b69f2f4be193b9e5e;hp=6095c9d8fe559456871f877ce09b054ce61f5789;p=platform%2Fframework%2Fweb%2Flivebox-viewer.git Fix the invalid error code of accessibility CB. Change-Id: Ieff89df5f4efe3dfe03eaf0c46bfdf8d62af7a80 --- diff --git a/packaging/liblivebox-viewer.spec b/packaging/liblivebox-viewer.spec index af56433..dd36919 100644 --- a/packaging/liblivebox-viewer.spec +++ b/packaging/liblivebox-viewer.spec @@ -1,6 +1,6 @@ Name: liblivebox-viewer Summary: Library for developing the application. -Version: 0.13.8 +Version: 0.13.9 Release: 1 Group: HomeTF/Livebox License: Flora License diff --git a/src/livebox.c b/src/livebox.c index f5360e5..30b5c04 100644 --- a/src/livebox.c +++ b/src/livebox.c @@ -2923,7 +2923,7 @@ struct livebox *lb_unref(struct livebox *handler) } if (handler->access_event_cb) { - handler->access_event_cb(handler, LB_STATUS_ERROR_FAULT, handler->access_event_cbdata); + handler->access_event_cb(handler, LB_ACCESS_STATUS_ERROR, handler->access_event_cbdata); handler->access_event_cb = NULL; handler->access_event_cbdata = NULL; }