Collected all settings ChkBoxes

This commit is contained in:
2015-07-16 23:39:27 +02:00
parent 125709f4ff
commit 83237693df
7 changed files with 170 additions and 30 deletions

View File

@ -14,7 +14,6 @@ namespace CobXmlSupport
public string ActualFile { get; set; }
public bool AnaTag { get; set; }
public bool BcupOwnCode { get; set; }
public string Company { get; set; }
public bool CountVars { get; set; }
public bool Displays { get; set; }
@ -23,7 +22,9 @@ namespace CobXmlSupport
public string LogSectName { get; set; }
public string LogVarName { get; set; }
public string MaxOcc { get; set; }
public bool MvToDisp { get; set; }
public bool NoNsRef { get; set; }
public bool Perform { get; set; }
public string Prefix { get; set; }
public bool Unique { get; set; }
public bool UniqueAttrVars { get; set; }
@ -38,7 +39,6 @@ namespace CobXmlSupport
{
this.ActualFile = S.ettingActualFile;
this.AnaTag = S.ettingAnaTag;
this.BcupOwnCode = S.ettingBackupOwnCode;
this.Company = S.ettingCompany;
this.CountVars = S.ettingCountVars;
this.Displays = S.ettingDisplays;
@ -47,7 +47,9 @@ namespace CobXmlSupport
this.LogSectName = S.ettingLogSectName;
this.LogVarName = S.ettingLogVarName;
this.MaxOcc = S.ettingMaxOcc;
this.MvToDisp = S.ettingMvToDisp;
this.NoNsRef = S.ettingNoNsRef;
this.Perform = S.ettingPerform;
this.Prefix = S.ettingPrefix;
this.Unique = S.ettingUnique;
this.UniqueAttrVars = S.ettingUniqueAttrVars;
@ -69,7 +71,6 @@ namespace CobXmlSupport
S.ettingActualFile = this.ActualFile;
S.ettingAnaTag = this.AnaTag;
S.ettingBackupOwnCode = this.BcupOwnCode;
S.ettingCompany = this.Company;
S.ettingCountVars = this.CountVars;
S.ettingDisplays = this.Displays;
@ -78,7 +79,9 @@ namespace CobXmlSupport
S.ettingLogSectName = this.LogSectName;
S.ettingLogVarName = this.LogVarName;
S.ettingMaxOcc = this.MaxOcc;
S.ettingMvToDisp = this.MvToDisp;
S.ettingNoNsRef = this.NoNsRef;
S.ettingPerform = this.Perform;
S.ettingPrefix = this.Prefix;
S.ettingUnique = this.Unique;
S.ettingUniqueAttrVars = this.UniqueAttrVars;