~ubuntu-branches/ubuntu/raring/almanah/raring-proposed

« back to all changes in this revision

Viewing changes to src/event-manager.c

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad
  • Date: 2011-04-18 16:21:36 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110418162136-l0ik4snrl420srer
Tags: 0.8.0-1
* New upstream release
* Temporarily remove evolution support in unstable
* Disable AM_GCONF_SOURCE_2 macro to fix ftbfs in unstable
  - debian/patches/disable_am_gconf_source_2
  - Build-Depends on dh-autoreconf
  - Use --with autoreconf in rules
* debian/control:
  - Build-Depends on libgtk-3-dev
* debian/rules:
  - Remove unnecessary override_dh_auto_install
* debian/copyright:
  - Update copyright years
  - Update license stanza
* Bump Standards-Version to 3.9.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include "calendar.h"
35
35
#endif /* HAVE_EVO */
36
36
#include "main.h"
37
 
#include "f-spot.h"
38
37
 
39
38
const EventFactoryType event_factory_types[] = {
40
39
#ifdef HAVE_EVO
41
40
        { ALMANAH_EVENT_FACTORY_CALENDAR, almanah_calendar_event_factory_get_type },
42
41
#endif /* HAVE_EVO */
43
 
        { ALMANAH_EVENT_FACTORY_F_SPOT, almanah_f_spot_event_factory_get_type }
44
42
};
45
43
 
46
44
static void almanah_event_manager_dispose (GObject *object);