summaryrefslogtreecommitdiff
path: root/src/components/hmi_message_handler
diff options
context:
space:
mode:
authorAndriy Kozoriz <AKozoriz@luxoft.com>2016-01-04 15:53:04 +0200
committerKozoriz <kozorizandriy@gmail.com>2016-01-06 10:06:30 +0200
commitb356c035b1d1f4367196b34064a0bbae6fca72c7 (patch)
treec9d3207b353a44d21750812df6c42020c6ff2566 /src/components/hmi_message_handler
parent10949318456231ba1bd9e63eacae6cfdc1778b5d (diff)
downloadsdl_core-b356c035b1d1f4367196b34064a0bbae6fca72c7.tar.gz
Remove mutable and inline directives hmi_message_adapter
Removed useless directives from hmi_message_adapter_impl header
Diffstat (limited to 'src/components/hmi_message_handler')
-rw-r--r--src/components/hmi_message_handler/include/hmi_message_handler/hmi_message_adapter_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/hmi_message_handler/include/hmi_message_handler/hmi_message_adapter_impl.h b/src/components/hmi_message_handler/include/hmi_message_handler/hmi_message_adapter_impl.h
index 806224edce..7e114d6c05 100644
--- a/src/components/hmi_message_handler/include/hmi_message_handler/hmi_message_adapter_impl.h
+++ b/src/components/hmi_message_handler/include/hmi_message_handler/hmi_message_adapter_impl.h
@@ -54,7 +54,7 @@ class HMIMessageAdapterImpl : public HMIMessageAdapter {
virtual ~HMIMessageAdapterImpl();
protected:
- inline virtual HMIMessageHandler* handler() const {
+ virtual HMIMessageHandler* handler() const {
return handler_;
}
@@ -62,7 +62,7 @@ class HMIMessageAdapterImpl : public HMIMessageAdapter {
/**
*\brief Pointer on handler to notify it about receiving message/error.
*/
- mutable HMIMessageHandler* handler_;
+ HMIMessageHandler* handler_;
};
} // namespace hmi_message_handler