~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to calendar/gui/alarm-notify/util.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-09-08 09:38:57 UTC
  • mfrom: (1.1.84 upstream)
  • Revision ID: package-import@ubuntu.com-20110908093857-6lfl04ke2ns3kx2o
Tags: 3.1.91-0ubuntu1
* New upstream release. (LP: #843769)
* debian/control: bump e-d-s Build-Depends to 3.1.91. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
/* Converts a time_t to a string, relative to the specified timezone */
36
36
gchar *
37
 
timet_to_str_with_zone (time_t t, icaltimezone *zone)
 
37
timet_to_str_with_zone (time_t t,
 
38
                        icaltimezone *zone)
38
39
{
39
40
        struct icaltimetype itt;
40
41
        struct tm tm;
52
53
}
53
54
 
54
55
gchar *
55
 
calculate_time (time_t start, time_t end)
 
56
calculate_time (time_t start,
 
57
                time_t end)
56
58
{
57
59
        time_t difference = end - start;
58
60
        gchar *str;