2003-08-18 Padraig O'Briain <padraig.obriain@sun.com>
authorpadraigo <padraigo@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 18 Aug 2003 09:56:56 +0000 (09:56 +0000)
committerpadraigo <padraigo@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 18 Aug 2003 09:56:56 +0000 (09:56 +0000)
* registryd/registryd.c: Remove this file.

git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@526 e2bd861d-eb25-0410-b326-f6ed22b6b98c

ChangeLog
registryd/registryd.c [deleted file]

index f5193ed..80e08c5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-18  Padraig O'Briain <padraig.obriain@sun.com>
+
+       * registryd/registryd.c: Remove this file.
+
 2003-08-17  Sanlig Badral  <badral@openmn.org>
 
        * configure.in: Added mn to ALL_LINGUAS.
@@ -8,7 +12,7 @@
 
 2003-08-13  Padraig O'Briain <padraig.obriain@sun.com>
 
-       * 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  <sampeson@iki.fi>
diff --git a/registryd/registryd.c b/registryd/registryd.c
deleted file mode 100644 (file)
index f56be79..0000000
+++ /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 <stdlib.h>
-#endif
-
-#include <libbonobo.h>
-#include <glib/gmain.h>
-#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;
-}
-