Example #1
0
 public EDSCategory(Evolution.Source source)
 {
     this.name = source.Name;
                this.uid = source.Uid;
                this.taskList = new Cal (source, CalSourceType.Todo);
        this.isSystem = (string.Compare (source.RelativeUri, "system") == 0);
 }
Example #2
0
 public EDSCategory(Evolution.Source source)
 {
     this.name     = source.Name;
     this.uid      = source.Uid;
     this.taskList = new Cal(source, CalSourceType.Todo);
     this.isSystem = (string.Compare(source.RelativeUri, "system") == 0);
 }
Example #3
0
        public EDSCategory(Evolution.Source source, Evolution.Cal taskList)
        {
            this.name = source.Name;
                       this.uid = source.Uid;
                       this.taskList = taskList;

               //Based on evolution/calendar/gui/e-cal-popup.c :
               //e_cal_popup_target_new_source
               this.isSystem = (string.Compare (source.RelativeUri, "system") == 0);
        }
Example #4
0
        public EDSCategory(Evolution.Source source, Evolution.Cal taskList)
        {
            this.name     = source.Name;
            this.uid      = source.Uid;
            this.taskList = taskList;

            //Based on evolution/calendar/gui/e-cal-popup.c :
            //e_cal_popup_target_new_source
            this.isSystem = (string.Compare(source.RelativeUri, "system") == 0);
        }