summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVeronica Veremjova <vveremjova@luxoft.com>2017-01-11 13:06:50 +0200
committerVeronica Veremjova <vveremjova@luxoft.com>2017-01-11 13:06:50 +0200
commitdde02f4b93b11c05126aaec183aac1af12f586e5 (patch)
tree8334c9efe3da03c4405340e99485d7d317c50b28
parent49ecee220a3d22e08af4f84432a3a954af625c43 (diff)
downloadsdl_core-dde02f4b93b11c05126aaec183aac1af12f586e5.tar.gz
Add missed comments
-rw-r--r--src/components/application_manager/include/application_manager/commands/hmi/request_from_hmi.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/application_manager/include/application_manager/commands/hmi/request_from_hmi.h b/src/components/application_manager/include/application_manager/commands/hmi/request_from_hmi.h
index ee500f047b..84c4e84dd3 100644
--- a/src/components/application_manager/include/application_manager/commands/hmi/request_from_hmi.h
+++ b/src/components/application_manager/include/application_manager/commands/hmi/request_from_hmi.h
@@ -68,6 +68,7 @@ class RequestFromHMI : public CommandImpl, public event_engine::EventObserver {
* @param correlation_id the correlation id for the response.
* @param function_id the function id for which response will be sent
* @param result_code the result code.
+ * @param error_message info message for error.
*/
void SendErrorResponse(const uint32_t correlation_id,
const hmi_apis::FunctionID::eType function_id,
@@ -77,14 +78,13 @@ class RequestFromHMI : public CommandImpl, public event_engine::EventObserver {
private:
/**
* @brief Fills common parameters for SO
- * @param Contains SO for filling
+ * @param message Contains SO for filling
* @param correlation_id the correlation id for the response.
* @param function_id the function id for which response will be sent
*/
- void FillCommonParametersOfSO(
- NsSmartDeviceLink::NsSmartObjects::SmartObjectSPtr& message,
- uint32_t correlation_id,
- hmi_apis::FunctionID::eType function_id);
+ void FillCommonParametersOfSO(smart_objects::SmartObjectSPtr& message,
+ uint32_t correlation_id,
+ hmi_apis::FunctionID::eType function_id);
private:
DISALLOW_COPY_AND_ASSIGN(RequestFromHMI);