~ps-jenkins/indicator-datetime/latestsnapshot-13.10.0+13.10.20131023.2-0ubuntu1

« back to all changes in this revision

Viewing changes to src/planner.c

  • Committer: Tarmac
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2013-10-22 22:35:31 UTC
  • mfrom: (278.1.1 indicator-datetime)
  • Revision ID: tarmac-20131022223531-rn7zr7smbnlki2ak
Revert revision 277 which appears to be more feature than bugfix applicable for SRU.

Approved by PS Jenkins bot, Ted Gould.

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
 
260
260
  return self->priv->timezone;
261
261
}
262
 
 
263
 
/***
264
 
****
265
 
***/
266
 
 
267
 
void
268
 
indicator_datetime_appt_free (struct IndicatorDatetimeAppt * appt)
269
 
{
270
 
  if (appt != NULL)
271
 
    {
272
 
      g_date_time_unref (appt->end);
273
 
      g_date_time_unref (appt->begin);
274
 
      g_free (appt->color);
275
 
      g_free (appt->summary);
276
 
      g_free (appt->url);
277
 
      g_free (appt->uid);
278
 
      g_slice_free (struct IndicatorDatetimeAppt, appt);
279
 
    }
280
 
}
281