summaryrefslogtreecommitdiffstats
path: root/src/stkagent.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2011-03-30 12:04:10 -0500
committerDenis Kenzior <denkenz@gmail.com>2011-03-30 12:07:49 -0500
commit91d8423458e215bc70d59e46e809f35888545518 (patch)
tree6feb08a6e92d52f0d053b110f3f16c09071d1f11 /src/stkagent.c
parent70ae73d78baf88cdd54078d9c6e2626ad15a7cd2 (diff)
downloadofono-91d8423458e215bc70d59e46e809f35888545518.tar.bz2
stkagent: typedef renaming from previous commit
Diffstat (limited to 'src/stkagent.c')
-rw-r--r--src/stkagent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stkagent.c b/src/stkagent.c
index 15ad4fab..54ca575a 100644
--- a/src/stkagent.c
+++ b/src/stkagent.c
@@ -1085,7 +1085,7 @@ int stk_agent_confirm_launch_browser(struct stk_agent *agent, const char *text,
static void display_action_cb(DBusPendingCall *call, void *data)
{
struct stk_agent *agent = data;
- stk_agent_user_termination_cb cb = agent->user_cb;
+ stk_agent_display_action_cb cb = agent->user_cb;
DBusMessage *reply = dbus_pending_call_steal_reply(call);
enum stk_agent_result result;
gboolean remove_agent;
@@ -1111,7 +1111,7 @@ static void display_action_cb(DBusPendingCall *call, void *data)
int stk_agent_display_action(struct stk_agent *agent,
const char *text,
const struct stk_icon_id *icon,
- stk_agent_user_termination_cb cb,
+ stk_agent_display_action_cb cb,
void *user_data,
ofono_destroy_func destroy)
{