From 9e4de90e06c6c1963325bda189b1bbc205200c31 Mon Sep 17 00:00:00 2001 From: Mike Gorse Date: Wed, 18 Jun 2008 11:36:07 -0400 Subject: [PATCH] ApplicationAdd -> applicationAdd ApplicationRemove -> applicationRemove --- registryd/registry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registryd/registry.c b/registryd/registry.c index 7316a05..0bb74f5 100644 --- a/registryd/registry.c +++ b/registryd/registry.c @@ -86,7 +86,7 @@ desktop_add_application (SpiDesktop *desktop, SpiRegistry *registry = SPI_REGISTRY (data); const SpiDesktopApplication *app = g_list_nth_data(desktop->applications, index); - emit(registry, "ApplicationAdd", DBUS_TYPE_UINT32, &index, DBUS_TYPE_STRING, &app->bus_name, DBUS_TYPE_INVALID); + emit(registry, "applicationAdd", DBUS_TYPE_UINT32, &index, DBUS_TYPE_STRING, &app->bus_name, DBUS_TYPE_INVALID); } @@ -99,7 +99,7 @@ desktop_remove_application (SpiDesktop *desktop, SpiDesktopApplication *app = g_list_nth_data(desktop->applications, index); spi_dbus_remove_disconnect_match (registry->droute.bus, app->bus_name); - emit(registry, "ApplicationRemove", DBUS_TYPE_UINT32, &index, DBUS_TYPE_STRING, &app->bus_name, DBUS_TYPE_INVALID); + emit(registry, "applicationRemove", DBUS_TYPE_UINT32, &index, DBUS_TYPE_STRING, &app->bus_name, DBUS_TYPE_INVALID); } -- 2.7.4