~ubuntu-branches/ubuntu/karmic/tasks/karmic

« back to all changes in this revision

Viewing changes to libkoto/koto-task.h

  • Committer: Bazaar Package Importer
  • Author(s): Ross Burton
  • Date: 2007-08-13 21:23:04 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070813212304-lygqq9gtx4g548w9
Tags: 0.11-1
* New upstream release
  - Fix crash when deleting tasks (Fixes: #437097)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
G_BEGIN_DECLS
26
26
 
27
27
typedef struct {
 
28
  /* Reference count */
28
29
  volatile gint ref_count;
 
30
  /* The real data */
29
31
  icalcomponent *comp;
 
32
  /* The following are read-only caches */
 
33
  char **categories;
30
34
} KotoTask;
31
35
 
32
36
#define KOTO_TYPE_TASK koto_task_get_type ()