Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/16/11 12:39:32 (13 years ago)
Author:
ascheibe
Message:

#1233 removed useLocalPlugins

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.4/HiveDataContext.designer.cs

    r6407 r6426  
    438438    private string _Version;
    439439   
    440     private bool _IsLocal;
    441    
    442440    private System.Guid _UserId;
    443441   
     
    460458    partial void OnVersionChanging(string value);
    461459    partial void OnVersionChanged();
    462     partial void OnIsLocalChanging(bool value);
    463     partial void OnIsLocalChanged();
    464460    partial void OnUserIdChanging(System.Guid value);
    465461    partial void OnUserIdChanged();
     
    533529          this.SendPropertyChanged("Version");
    534530          this.OnVersionChanged();
    535         }
    536       }
    537     }
    538    
    539     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsLocal", DbType="Bit")]
    540     public bool IsLocal
    541     {
    542       get
    543       {
    544         return this._IsLocal;
    545       }
    546       set
    547       {
    548         if ((this._IsLocal != value))
    549         {
    550           this.OnIsLocalChanging(value);
    551           this.SendPropertyChanging();
    552           this._IsLocal = value;
    553           this.SendPropertyChanged("IsLocal");
    554           this.OnIsLocalChanged();
    555531        }
    556532      }
Note: See TracChangeset for help on using the changeset viewer.