diff options
author | Ted Gould <ted@gould.cx> | 2010-12-06 16:05:36 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-06 16:05:36 -0600 |
commit | a92f87080dea6c0d16bfb55bf75e155658bfa372 (patch) | |
tree | 08aa4ac751030b151a4d6be753f4320c96b1c731 | |
parent | 884367e5f739a56355d56a707ff0d741934190ec (diff) | |
download | libayatana-appindicator-a92f87080dea6c0d16bfb55bf75e155658bfa372.tar.gz libayatana-appindicator-a92f87080dea6c0d16bfb55bf75e155658bfa372.tar.bz2 libayatana-appindicator-a92f87080dea6c0d16bfb55bf75e155658bfa372.zip |
Adding in the get_prop function so that things start linking
-rw-r--r-- | src/app-indicator.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 94cf624..0b31018 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -998,6 +998,16 @@ bus_creation (GObject * obj, GAsyncResult * res, gpointer user_data) return; } +/* DBus is asking for a property so we should figure out what it + wants and try and deliver. */ +static GVariant * +bus_get_prop (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * property, GError ** error, gpointer user_data) +{ + + + return NULL; +} + /* Sends the label changed signal and resets the source ID */ static gboolean signal_label_change_idle (gpointer user_data) |