~ubuntu-branches/ubuntu/maverick/gcompris/maverick

« back to all changes in this revision

Viewing changes to src/libgnomecanvas/libgnomecanvastypes.c

  • Committer: Bazaar Package Importer
  • Author(s): Marc Gariepy, Marc Gariepy, Stephane Graber
  • Date: 2010-01-04 17:42:49 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100104174249-7bupatd9dtxyhvs4
Tags: 9.0-0ubuntu1
[Marc Gariepy]
* New upstream release (9.0).
* Remove cache.c from POTFILES to avoid FTBFS
* Remove unneeded rm in debian/rules (file no longer exists upstream)

[Stephane Graber]
* Bump Debian standards to 3.8.3
* Add patch system (dpatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 1999, 2000 Red Hat, Inc.
3
 
 * All rights reserved.
4
 
 *
5
 
 * This file is part of the Gnome Library.
6
 
 *
7
 
 * The Gnome Library is free software; you can redistribute it and/or
8
 
 * modify it under the terms of the GNU Library General Public License as
9
 
 * published by the Free Software Foundation; either version 2 of the
10
 
 * License, or (at your option) any later version.
11
 
 *
12
 
 * The Gnome Library is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
 * Library General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU Library General Public
18
 
 * License along with the Gnome Library; see the file COPYING.LIB.  If not,
19
 
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20
 
 * Boston, MA 02111-1307, USA.
21
 
 */
22
 
/*
23
 
  @NOTATION@
24
 
 */
25
 
 
26
 
#include <config.h>
27
 
#include <glib-object.h>
28
 
 
29
 
#include <libgnomecanvas/libgnomecanvas.h>
30
 
 
31
 
GType
32
 
gnome_canvas_points_get_type (void)
33
 
{
34
 
    static GType type_canvas_points = 0;
35
 
 
36
 
    if (!type_canvas_points)
37
 
        type_canvas_points = g_boxed_type_register_static
38
 
            ("GnomeCanvasPoints", 
39
 
             (GBoxedCopyFunc) gnome_canvas_points_ref,
40
 
             (GBoxedFreeFunc) gnome_canvas_points_unref);
41
 
 
42
 
    return type_canvas_points;
43
 
}