Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/11 15:05:48 (13 years ago)
Author:
cneumuel
Message:

#1233

  • implemented pause, stop for single jobs
  • introduced Command property for jobs (to distinguish between state and command (abort vs. aborted))
  • improved behaviour of ItemTreeView (double click opens new window, selected item stays marked)
  • fixed bugs in StateLogGanttChartListView and HiveJobView
  • fixed cloning of client-side dtos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/Appointment.cs

    r5633 r5779  
    2727    public Appointment() { }
    2828
    29     protected Appointment(Appointment original, Cloner cloner) {
     29    protected Appointment(Appointment original, Cloner cloner)
     30      : base(original, cloner) {
    3031      this.AllDayEvent = original.AllDayEvent;
    3132      this.EndDate = original.EndDate;
     
    3435      this.ResourceId = original.ResourceId;
    3536      this.StartDate = original.StartDate;
    36       this.Id = original.Id;
    3737    }
    3838
Note: See TracChangeset for help on using the changeset viewer.