summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevron Rees <kevron_m_rees@linux.intel.com>2013-08-16 10:26:33 -0700
committerKevron Rees <kevron_m_rees@linux.intel.com>2013-08-16 10:26:33 -0700
commita9f12998ac1237244a9de3691fceb300feecc3c3 (patch)
tree5a00ddf38fd876c7a109f59d501ce775123b4ded
parent227182791ea4ae613f51a380256fa3f3851caa6f (diff)
downloadautomotive-message-broker-a9f12998ac1237244a9de3691fceb300feecc3c3.tar.gz
change getHistory to UpperCamelCase for consistency0.9.14
-rw-r--r--plugins/dbus/abstractdbusinterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dbus/abstractdbusinterface.cpp b/plugins/dbus/abstractdbusinterface.cpp
index b3e7d66b..e729c477 100644
--- a/plugins/dbus/abstractdbusinterface.cpp
+++ b/plugins/dbus/abstractdbusinterface.cpp
@@ -42,7 +42,7 @@ static void handleMethodCall(GDBusConnection *connection,
AbstractDBusInterface* iface = static_cast<AbstractDBusInterface*>(user_data);
std::string method = method_name;
- if(method == "getHistory")
+ if(method == "GetHistory")
{
double beginTime = 0;
double endTime = 0;
@@ -284,7 +284,7 @@ void AbstractDBusInterface::startRegistration()
introspectionXml += "<interface name='"+ mInterfaceName + "' >"
"<property type='d' name='Time' access='read' />"
- "<method name='getHistory'>"
+ "<method name='GetHistory'>"
" <arg type='d' direction='in' name='beginTimestamp' />"
" <arg type='d' direction='in' name='endTimestamp' />"
" <arg type='a{sv}' direction='out' name='result' />"