aboutsummaryrefslogtreecommitdiff
path: root/src/example-interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/example-interface.c')
-rw-r--r--src/example-interface.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/example-interface.c b/src/example-interface.c
index 1ca729a..2b5fe1b 100644
--- a/src/example-interface.c
+++ b/src/example-interface.c
@@ -181,27 +181,3 @@ example_interface_finalize (GObject *object)
return;
}
-void
-example_interface_update (ExampleInterface *self)
-{
- g_return_if_fail(IS_EXAMPLE_INTERFACE(self));
-
- ExampleInterfacePrivate * priv = EXAMPLE_INTERFACE_GET_PRIVATE(self);
- GError * error = NULL;
-
- g_dbus_connection_emit_signal (priv->bus,
- NULL,
- SERVICE_OBJ,
- SERVICE_IFACE,
- "UpdateTime",
- NULL,
- &error);
-
- if (error != NULL) {
- g_error("Unable to send UpdateTime signal: %s", error->message);
- g_error_free(error);
- return;
- }
-
- return;
-}