~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to calendar/libecal/e-cal-enumtypes.c.template

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*** BEGIN file-header ***/
 
2
#include "e-cal-enumtypes.h"
 
3
 
 
4
/*** END file-header ***/
 
5
 
 
6
/*** BEGIN file-production ***/
 
7
/* enumerations from "@filename@" */
 
8
#include "@filename@"
 
9
 
 
10
/*** END file-production ***/
 
11
 
 
12
/*** BEGIN value-header ***/
 
13
GType
 
14
@enum_name@_get_type (void)
 
15
{
 
16
        static GType the_type = 0;
 
17
        
 
18
        if (the_type == 0) {
 
19
                static const G@Type@Value values[] = {
 
20
/*** END value-header ***/
 
21
 
 
22
/*** BEGIN value-production ***/
 
23
                        { @VALUENAME@,
 
24
                          "@VALUENAME@",
 
25
                          "@valuenick@" },
 
26
/*** END value-production ***/
 
27
 
 
28
/*** BEGIN value-tail ***/
 
29
                        { 0, NULL, NULL }
 
30
                };
 
31
                the_type = g_@type@_register_static (
 
32
                        g_intern_static_string ("@EnumName@"),
 
33
                        values);
 
34
        }
 
35
        return the_type;
 
36
}
 
37
 
 
38
/*** END value-tail ***/