~ubuntu-branches/ubuntu/oneiric/almanah/oneiric

« back to all changes in this revision

Viewing changes to src/event-factory-builtins.c

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2009-05-16 15:49:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090516154921-2uhvlj8btb4qygmd
Tags: 0.6.1-0ubuntu1
* New upstream release (LP: #368078)
* debian/control:
  - Bump Standards-Version to 3.8.1
  - Add intltool, libedataserver1.2-dev, libedataserverui1.2-dev, 
    libecal1.2-dev, libcryptui-dev as build dependency
  - Remove build dependency on autotools-dev and chrpath
* debian/{control/compat/rules}: Move to mimalistic dh7 style
* Update debian/watch
* Update copyright information

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* Generated data (by glib-mkenums) */
 
3
 
 
4
#include "event-factory.h"
 
5
#include "event-factory-builtins.h"
 
6
 
 
7
/* enumerations from "event-factory.h" */
 
8
GType
 
9
almanah_event_factory_type_get_type (void)
 
10
{
 
11
  static GType etype = 0;
 
12
  if (etype == 0) {
 
13
    static const GEnumValue values[] = {
 
14
      { ALMANAH_EVENT_FACTORY_UNKNOWN, "ALMANAH_EVENT_FACTORY_UNKNOWN", "unknown" },
 
15
      { ALMANAH_EVENT_FACTORY_CALENDAR, "ALMANAH_EVENT_FACTORY_CALENDAR", "calendar" },
 
16
      { 0, NULL, NULL }
 
17
    };
 
18
    etype = g_enum_register_static ("AlmanahEventFactoryType", values);
 
19
  }
 
20
  return etype;
 
21
}
 
22
 
 
23
/* Generated data ends here */
 
24