Make camel not leak like a sieve.
[platform/upstream/evolution-data-server.git] / camel / camel-object.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-object.c: Base class for Camel */
3
4 /*
5  * Author:
6  *  Dan Winship <danw@helixcode.com>
7  *
8  * Copyright 2000 Helix Code, Inc. (http://www.helixcode.com)
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of the
13  * License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23  * USA
24  */
25
26 #include <config.h>
27 #include "camel-object.h"
28
29 static void
30 camel_object_init (gpointer object, gpointer klass)
31 {
32         GTK_OBJECT_UNSET_FLAGS (object, GTK_FLOATING);
33 }
34
35 GtkType
36 camel_object_get_type (void)
37 {
38         static GtkType camel_object_type = 0;
39
40         if (!camel_object_type) {
41                 GtkTypeInfo camel_object_info =
42                 {
43                         "CamelObject",
44                         sizeof (CamelObject),
45                         sizeof (CamelObjectClass),
46                         (GtkClassInitFunc) NULL,
47                         (GtkObjectInitFunc) camel_object_init,
48                                 /* reserved_1 */ NULL,
49                                 /* reserved_2 */ NULL,
50                         (GtkClassInitFunc) NULL,
51                 };
52
53                 camel_object_type = gtk_type_unique (gtk_object_get_type (), &camel_object_info);
54         }
55
56         return camel_object_type;
57 }