2008-04-30 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / libspi / base.h
index 2f1c206..bfe5860 100644 (file)
@@ -1,5 +1,9 @@
-/* AT-SPI : Assistive Technology Service Provider Interface
- * Copyright 2001 Sun Microsystems Inc.
+/*
+ * 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
@@ -35,7 +39,7 @@ G_BEGIN_DECLS
 
 typedef struct {
         BonoboObject parent;
-        AtkObject   *atko;
+        GObject *gobj;
 } SpiBase;
 
 typedef struct {
@@ -44,9 +48,9 @@ typedef struct {
 
 GType      spi_base_get_type          (void);
 void       spi_base_construct         (SpiBase   *base,
-                                      AtkObject *aobject);
+                                      GObject   *gobject);
 void       spi_base_construct_default (SpiBase   *base);
-AtkObject *spi_base_get_atkbase       (SpiBase   *base);
+GObject   *spi_base_get_gobject       (SpiBase   *base);
 
 G_END_DECLS