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

« back to all changes in this revision

Viewing changes to calendar/tests/ecal/test-recur.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre, Ken VanDine, Mathieu Trudel-Lapierre
  • Date: 2011-06-23 17:40:41 UTC
  • mfrom: (1.1.88 upstream)
  • Revision ID: james.westby@ubuntu.com-20110623174041-4wd9jvs07wfinyet
Tags: 3.1.2-0ubuntu1
* New upstream version
  - bgo 589495 - Search folder by Size (KB) counts bytes, not KB (LP: #385859)
  - bgo 649757 - Filtering on a source account always succeeded (LP: #781391)
  - bgo 418954 - Add a separate entry combo for port numbers (LP: #160304)

[ Ken VanDine ]
* debian/libebook1.2-dev.install
  - Include EBook-1.2.gir
* debian/control
  - Added gir1.2-ebook-1.2 binary

[ Mathieu Trudel-Lapierre ]
* debian/control: drop libegroupwise1.2-13, libegroupwise-dev, they are now
  an independent module.
* debian/libegroupwise1.2-13.install,
  debian/libegroupwise1.2-dev.install,
  debian/lintian/libegroupwise1.2-13: dropped, see above.
* debian/control, debian/libe*.install, debian/lintian/libe*: rename and
  update files where needed to follow upstream soname changes.
* debian/control: bump evolution-data-server's Depends to libcamel-1.2-26.
* debian/rules: update to use makeshlibs with the new libcamel soname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
 
 
3
 
#include <stdlib.h>
4
 
#include <libecal/e-cal.h>
5
 
 
6
 
gint
7
 
main (gint argc, gchar **argv)
8
 
{
9
 
        ECal *ecal;
10
 
 
11
 
        g_type_init ();
12
 
 
13
 
        if (argc < 2) {
14
 
                printf ("usage: test-recur <uid>\n");
15
 
                exit (0);
16
 
        }
17
 
 
18
 
        ecal = e_cal_new_from_uri (argv[1], E_CAL_SOURCE_TYPE_EVENT);
19
 
 
20
 
        if (!e_cal_open (ecal, TRUE, NULL)) {
21
 
                printf ("failed to open calendar\n");
22
 
                exit (0);
23
 
        }
24
 
 
25
 
        g_object_unref (ecal);
26
 
 
27
 
        return 0;
28
 
}