diff options
Diffstat (limited to 'src/homescreen.cpp')
-rw-r--r-- | src/homescreen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/homescreen.cpp b/src/homescreen.cpp index 95cdf4e..65c0064 100644 --- a/src/homescreen.cpp +++ b/src/homescreen.cpp @@ -163,7 +163,7 @@ static void tap_shortcut (afb_req_t request) if(ret == AFB_REQ_NOT_STARTED_APPLICATION) { std::string id = g_hs_instance->app_info->getAppProperty(value, _keyId); HS_AfmMainProxy afm_proxy; - afm_proxy.start(request, id); + afm_proxy.start(g_hs_instance, request, id); ret = 0; } } @@ -315,7 +315,7 @@ static void showWindow(afb_req_t request) if(ret == AFB_REQ_NOT_STARTED_APPLICATION) { std::string id = g_hs_instance->app_info->getAppProperty(value, _keyId); HS_AfmMainProxy afm_proxy; - afm_proxy.start(request, id); + afm_proxy.start(g_hs_instance, request, id); ret = 0; } } |