From c15ae7a6dd8fc8b8e104452d7521b5488d4c92bb Mon Sep 17 00:00:00 2001 From: Kevron Rees Date: Fri, 8 Nov 2013 11:55:55 -0800 Subject: fixed missing symbol in websocket source plugin --- TODO | 1 + plugins/dbus/abstractdbusinterface.cpp | 2 ++ plugins/websocketsourceplugin/websocketsource.cpp | 6 ++++++ 3 files changed, 9 insertions(+) diff --git a/TODO b/TODO index 38cd7221..f3b25d60 100644 --- a/TODO +++ b/TODO @@ -5,6 +5,7 @@ For 0.11 - Implement all the DBus properties in the docs/ directory. - update json protocol to include getPropertyInfo calls - update json protocol to support rangerequests with PropertyList instead of a signel property (Verify) +- update json protocol to support zones - update database to support zone column - general support for source and zone filtering in database plugin - no reason for pluginloader to track sources. core already does it. diff --git a/plugins/dbus/abstractdbusinterface.cpp b/plugins/dbus/abstractdbusinterface.cpp index 13abb4e2..bced578b 100644 --- a/plugins/dbus/abstractdbusinterface.cpp +++ b/plugins/dbus/abstractdbusinterface.cpp @@ -377,6 +377,8 @@ void AbstractDBusInterface::startRegistration() GVariant* AbstractDBusInterface::getProperty(GDBusConnection* connection, const gchar* sender, const gchar* objectPath, const gchar* interfaceName, const gchar* propertyName, GError** error, gpointer userData) { + DebugOut(6)<<"getProperty call from: "< config) } + +PropertyInfo WebSocketSource::getPropertyInfo(VehicleProperty::Property property) +{ + return PropertyInfo::invalid(); +} + bool gioPollingFunc(GIOChannel *source, GIOCondition condition, gpointer data) { //This is the polling function. If it return false, glib will stop polling this FD. -- cgit v1.2.1