diff options
Diffstat (limited to 'src/app.cpp')
-rw-r--r-- | src/app.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.cpp b/src/app.cpp index 3ff6c9c..8d094ff 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -604,7 +604,7 @@ void App::lm_layout_change(unsigned req, const char* drawing_name) } } -const char* App::check_surface_exist(unsigned req, const char* drawing_name) +const char* App::lm_check_surface_exist(unsigned req, const char* drawing_name) { auto const &surface_id = this->lookup_id(drawing_name); if (!surface_id) @@ -691,7 +691,7 @@ void App::api_activate_surface(char const *appid, char const *drawing_name, char bool ret = this->do_allocate_window_resource(new_req); // layer manager task - const char* msg = this->check_surface_exist(new_req, drawing_name); // this function will be integrated in do_allocate_window_resource() + const char* msg = this->lm_check_surface_exist(new_req, drawing_name); // this function will be integrated in do_allocate_window_resource() if(msg){ HMI_SEQ_DEBUG(new_req,"surface doesn't exist"); |