fixed compile errors in a few source plugins
authorKevron Rees <kevron.m.rees@intel.com>
Wed, 15 Jan 2014 22:41:31 +0000 (14:41 -0800)
committerKevron Rees <kevron.m.rees@intel.com>
Fri, 17 Jan 2014 21:29:05 +0000 (13:29 -0800)
plugins/obd2plugin/obd2source.cpp
plugins/websocket/websocketsource.cpp
plugins/websocketsourceplugin/websocketsource.cpp

index f2ca956..746d2d1 100644 (file)
@@ -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)
 {
index 21de55a..5ac26d3 100644 (file)
@@ -465,7 +465,7 @@ void WebSocketSource::setSupported(PropertyList list)
 {
        DebugOut() <<__SMALLFILE__ << ":" << __LINE__ <<"SET SUPPORTED"<<endl;
        m_supportedProperties = list;
-       m_re->updateSupported(list,PropertyList());
+       m_re->updateSupported(list,PropertyList(),this);
 }
 
 WebSocketSource::WebSocketSource(AbstractRoutingEngine *re, map<string, string> config) : AbstractSource(re, config)
index 4c48e45..371ee0d 100644 (file)
@@ -486,7 +486,7 @@ void WebSocketSource::setSupported(PropertyList list)
 {
        DebugOut() <<__SMALLFILE__ << ":" << __LINE__ <<"SET SUPPORTED"<<endl;
        m_supportedProperties = list;
-       m_re->updateSupported(list,PropertyList());
+       m_re->updateSupported(list,PropertyList(),this);
 }
 
 WebSocketSource::WebSocketSource(AbstractRoutingEngine *re, map<string, string> config) : AbstractSource(re, config)