From bbb9c8bb8e4f766bd485c0b565a9036050c763ac Mon Sep 17 00:00:00 2001 From: padraigo Date: Mon, 18 Aug 2003 09:56:56 +0000 Subject: [PATCH] 2003-08-18 Padraig O'Briain * registryd/registryd.c: Remove this file. git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@526 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- ChangeLog | 6 ++++- registryd/registryd.c | 71 --------------------------------------------------- 2 files changed, 5 insertions(+), 72 deletions(-) delete mode 100644 registryd/registryd.c diff --git a/ChangeLog b/ChangeLog index f5193ed..80e08c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-08-18 Padraig O'Briain + + * registryd/registryd.c: Remove this file. + 2003-08-17 Sanlig Badral * configure.in: Added mn to ALL_LINGUAS. @@ -8,7 +12,7 @@ 2003-08-13 Padraig O'Briain - * test/event-listeber-test.c: Change active-descendant to + * test/event-listener-test.c: Change active-descendant to active-descendant-changed. 2003-08-10 Sami Pesonen diff --git a/registryd/registryd.c b/registryd/registryd.c deleted file mode 100644 index f56be79..0000000 --- a/registryd/registryd.c +++ /dev/null @@ -1,71 +0,0 @@ -/* - * AT-SPI - Assistive Technology Service Provider Interface - * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap) - * - * Copyright 2001, 2002 Sun Microsystems Inc., - * Copyright 2001, 2002 Ximian, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifdef AT_SPI_DEBUG -#include -#endif - -#include -#include -#include "registry.h" - -int -main (int argc, char **argv) -{ - int ret; - char *obj_id; - SpiRegistry *registry; - - free (malloc (8)); /* -lefence */ - - if (!bonobo_init (&argc, argv)) - { - g_error ("Could not initialize oaf / Bonobo"); - } - - obj_id = "OAFIID:Accessibility_Registry:1.0"; - - registry = spi_registry_new (); - - ret = bonobo_activation_active_server_register ( - obj_id, - bonobo_object_corba_objref (bonobo_object (registry))); - - if (ret != Bonobo_ACTIVATION_REG_SUCCESS) - { -#ifdef AT_SPI_DEBUG - fprintf (stderr, "SpiRegistry Message: SpiRegistry daemon was already running.\n"); -#endif - } - else - { -#ifdef AT_SPI_DEBUG - fprintf (stderr, "SpiRegistry Message: SpiRegistry daemon is running.\n"); -#endif - g_timeout_add_full (G_PRIORITY_HIGH_IDLE, 200, registry->kbd_event_hook, registry, NULL); - bonobo_main (); - } - - return 0; -} - -- 2.7.4