summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleekillough <killough@leekillough.com>2017-10-11 15:39:42 -0700
committerGitHub <noreply@github.com>2017-10-11 15:39:42 -0700
commitd2bbb4db4805c9581b34f460998ae232b45507fb (patch)
tree013e1f9d9687517b5a9650e60be961fcece9079b
parent0ae7df52480d16e6ea93f42d41fc99e3fe330cf9 (diff)
downloadsdl_core-d2bbb4db4805c9581b34f460998ae232b45507fb.tar.gz
Add files via upload
Fix silent bug caused by implicit conversion of smart pointer to integer
-rw-r--r--src/components/application_manager/src/message_helper/message_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/src/message_helper/message_helper.cc b/src/components/application_manager/src/message_helper/message_helper.cc
index 65f4c79fa6..f122815b65 100644
--- a/src/components/application_manager/src/message_helper/message_helper.cc
+++ b/src/components/application_manager/src/message_helper/message_helper.cc
@@ -949,7 +949,7 @@ void MessageHelper::SendAppDataToHMI(ApplicationConstSharedPtr app,
ApplicationManager& app_man) {
LOG4CXX_AUTO_TRACE(logger_);
if (app) {
- SendSetAppIcon(app, app->app_icon_path(), app_man);
+ SendSetAppIcon(app->app_id(), app->app_icon_path(), app_man);
SendGlobalPropertiesToHMI(app, app_man);
SendShowRequestToHMI(app, app_man);
}