diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2018-11-30 21:07:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-11-30 21:07:10 +0000 |
commit | 2b1bf85afe0a8b24f75386f7c24df85f9b785bd3 (patch) | |
tree | 8b727b720dd475deb8fbd52ec0cae83613b156ec /src/wm_client.cpp | |
parent | d1188744973931f66a83968310175369cd85c231 (diff) | |
parent | d9dc8ef258ed2ddeeca83775eee945dbfdae59c5 (diff) |
Merge "Migrates bindings v3"guppy_6.99.2guppy/6.99.26.99.2
Diffstat (limited to 'src/wm_client.cpp')
-rw-r--r-- | src/wm_client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wm_client.cpp b/src/wm_client.cpp index 7a93c7c..e7cb552 100644 --- a/src/wm_client.cpp +++ b/src/wm_client.cpp @@ -48,7 +48,7 @@ WMClient::WMClient(const string &appid, unsigned layer, unsigned surface, const #if GTEST_ENABLED string ev = x; #else - afb_event ev = afb_daemon_make_event(x.c_str()); + afb_event_t ev = afb_api_make_event(afbBindingV3root, x.c_str()); #endif evname2list[x] = ev; } @@ -66,7 +66,7 @@ WMClient::WMClient(const string &appid, const string &role) #if GTEST_ENABLED string ev = x; #else - afb_event ev = afb_daemon_make_event(x.c_str()); + afb_event_t ev = afb_api_make_event(afbBindingV3root, x.c_str()); #endif evname2list[x] = ev; } @@ -85,7 +85,7 @@ WMClient::WMClient(const string &appid, unsigned layer, const string &role) #if GTEST_ENABLED string ev = x; #else - afb_event ev = afb_daemon_make_event(x.c_str()); + afb_event_t ev = afb_api_make_event(afbBindingV3root, x.c_str()); #endif evname2list[x] = ev; } @@ -144,7 +144,7 @@ bool WMClient::removeSurfaceIfExist(unsigned surface) #if GTEST_ENABLED -bool WMClient::subscribe(afb_req req, const string &evname) +bool WMClient::subscribe(afb_req_t req, const string &evname) { if(evname != kKeyError){ HMI_DEBUG("error is only enabeled for now"); |