From 53e09a3a8e9ff405ee5936f4765659d3817991e6 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 19 May 2017 00:36:30 +0200 Subject: Change method name to signify that it is an aggregate. As can_message_definitions got the exact same name but the one from can_message_set is an aggregate of all can_message_definition. So it is clearer using a different name. Change-Id: Ieb9e4d3291f3dc460eb352d8b8fe5a7cf479e687 Signed-off-by: Romain Forlot --- CAN-binder/low-can-binding/binding/configuration.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CAN-binder/low-can-binding/binding/configuration.cpp') diff --git a/CAN-binder/low-can-binding/binding/configuration.cpp b/CAN-binder/low-can-binding/binding/configuration.cpp index cc2b8f23..4898bdcb 100644 --- a/CAN-binder/low-can-binding/binding/configuration.cpp +++ b/CAN-binder/low-can-binding/binding/configuration.cpp @@ -47,9 +47,9 @@ const std::vector >& configuration_t::get_can return can_message_set_; } -std::vector > configuration_t::get_can_signals() +std::vector > configuration_t::get_all_can_signals() { - return can_message_set_[active_message_set_]->get_can_signals(); + return can_message_set_[active_message_set_]->get_all_can_signals(); } std::vector > configuration_t::get_diagnostic_messages() -- cgit 1.2.3-korg