From c75bf39d59107850ea8941fbaa7a6cd65ef789c1 Mon Sep 17 00:00:00 2001 From: Kevron Rees Date: Wed, 15 Jan 2014 14:41:31 -0800 Subject: [PATCH] fixed compile errors in a few source plugins --- plugins/obd2plugin/obd2source.cpp | 2 +- plugins/websocket/websocketsource.cpp | 2 +- plugins/websocketsourceplugin/websocketsource.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/obd2plugin/obd2source.cpp b/plugins/obd2plugin/obd2source.cpp index f2ca956..746d2d1 100644 --- a/plugins/obd2plugin/obd2source.cpp +++ b/plugins/obd2plugin/obd2source.cpp @@ -528,7 +528,7 @@ void OBD2Source::updateProperty(VehicleProperty::Property property,AbstractPrope void OBD2Source::setSupported(PropertyList list) { m_supportedProperties = list; - m_re->updateSupported(list,PropertyList()); + m_re->updateSupported(list,PropertyList(),this); } /*void OBD2Source::propertySignal(VehicleProperty::Property property,boost::any value) { diff --git a/plugins/websocket/websocketsource.cpp b/plugins/websocket/websocketsource.cpp index 21de55a..5ac26d3 100644 --- a/plugins/websocket/websocketsource.cpp +++ b/plugins/websocket/websocketsource.cpp @@ -465,7 +465,7 @@ void WebSocketSource::setSupported(PropertyList list) { DebugOut() <<__SMALLFILE__ << ":" << __LINE__ <<"SET SUPPORTED"<updateSupported(list,PropertyList()); + m_re->updateSupported(list,PropertyList(),this); } WebSocketSource::WebSocketSource(AbstractRoutingEngine *re, map config) : AbstractSource(re, config) diff --git a/plugins/websocketsourceplugin/websocketsource.cpp b/plugins/websocketsourceplugin/websocketsource.cpp index 4c48e45..371ee0d 100644 --- a/plugins/websocketsourceplugin/websocketsource.cpp +++ b/plugins/websocketsourceplugin/websocketsource.cpp @@ -486,7 +486,7 @@ void WebSocketSource::setSupported(PropertyList list) { DebugOut() <<__SMALLFILE__ << ":" << __LINE__ <<"SET SUPPORTED"<updateSupported(list,PropertyList()); + m_re->updateSupported(list,PropertyList(),this); } WebSocketSource::WebSocketSource(AbstractRoutingEngine *re, map config) : AbstractSource(re, config) -- 2.7.4