21a0ce14a15c11d44a776f6b2d10091f957bffc3
[platform/upstream/at-spi2-core.git] / atspi / atspi-object.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "atspi-private.h"
25
26 G_DEFINE_TYPE (AtspiObject, atspi_object, G_TYPE_OBJECT)
27
28 static void
29 atspi_object_init (AtspiObject *obj)
30 {
31 }
32
33 static void
34 atspi_object_dispose (GObject *object)
35 {
36   AtspiObject *aobj = ATSPI_OBJECT (object);
37
38   if (aobj->app)
39   {
40     g_object_unref (aobj->app);
41     aobj->app = NULL;
42   }
43
44   G_OBJECT_CLASS (atspi_object_parent_class)->dispose (object);
45 }
46
47 static void
48 atspi_object_finalize (GObject *object)
49 {
50   AtspiObject *aobj = ATSPI_OBJECT (object);
51
52   /* TODO: Figure out why the next line sometimes crashes */
53   /*g_free (aobj->path); */
54
55   G_OBJECT_CLASS (atspi_object_parent_class)->finalize (object);
56 }
57
58 static void
59 atspi_object_class_init (AtspiObjectClass *klass)
60 {
61   GObjectClass *object_class = G_OBJECT_CLASS (klass);
62
63   object_class->dispose = atspi_object_dispose;
64   object_class->finalize = atspi_object_finalize;
65 }