diff --git a/WowHeadParser/Classes/Zone.cs b/WowHeadParser/Classes/Zone.cs index 6913191..0249b92 100644 --- a/WowHeadParser/Classes/Zone.cs +++ b/WowHeadParser/Classes/Zone.cs @@ -4,7 +4,6 @@ using System; using System.Collections.Generic; using System.ComponentModel; -using System.Diagnostics; using System.IO; using System.Linq; using WowHeadParser.Entities; diff --git a/WowHeadParser/Entities/Creature.cs b/WowHeadParser/Entities/Creature.cs index 1753255..a8d4d37 100644 --- a/WowHeadParser/Entities/Creature.cs +++ b/WowHeadParser/Entities/Creature.cs @@ -8,7 +8,6 @@ using Newtonsoft.Json.Linq; using static WowHeadParser.MainWindow; using System.Windows.Forms; -using System.Diagnostics; namespace WowHeadParser.Entities { @@ -367,9 +366,6 @@ public void SetCreatureLootData(CreatureLootItemParsing[] creatureLootItemDatas, try { - //Debug.WriteLine((object)allLootData[i].modes.ToString()); - //Debug.WriteLine((object)allLootData[i].modes["mode"].ToString()); - //Debug.WriteLine(allLootData[i].modes["mode"].GetType()); String realItemMode = allLootData[i].modes["mode"]; String treatmentItemMode = realItemMode; @@ -403,10 +399,6 @@ public void SetCreatureLootData(CreatureLootItemParsing[] creatureLootItemDatas, { foreach (String mode in modes) { - //Debug.WriteLine("mode: " + mode); - //Debug.WriteLine(allLootData[i].id); - //Debug.WriteLine((object)allLootData[i].modes.ToString()); - //Debug.WriteLine((float)Convert.ToDouble(allLootData[i].modes["0"]["count"])); try { count = (float)Convert.ToDouble(allLootData[i].modes["0"]["count"]) != -1 ? (float)Convert.ToDouble(allLootData[i].modes["0"]["count"]) : 0.0f; diff --git a/WowHeadParser/MainWindow.Designer.cs b/WowHeadParser/MainWindow.Designer.cs index d3f68fd..de988bc 100644 --- a/WowHeadParser/MainWindow.Designer.cs +++ b/WowHeadParser/MainWindow.Designer.cs @@ -84,10 +84,10 @@ private void InitializeComponent() // labelFrom // this.labelFrom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.labelFrom.Location = new System.Drawing.Point(218, 13); + this.labelFrom.Location = new System.Drawing.Point(218, 10); this.labelFrom.Margin = new System.Windows.Forms.Padding(0); this.labelFrom.Name = "labelFrom"; - this.labelFrom.Size = new System.Drawing.Size(32, 13); + this.labelFrom.Size = new System.Drawing.Size(32, 20); this.labelFrom.TabIndex = 5; this.labelFrom.Text = "Start:"; this.labelFrom.TextAlign = System.Drawing.ContentAlignment.MiddleRight; @@ -96,10 +96,10 @@ private void InitializeComponent() // labelTo // this.labelTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.labelTo.Location = new System.Drawing.Point(335, 13); + this.labelTo.Location = new System.Drawing.Point(335, 10); this.labelTo.Margin = new System.Windows.Forms.Padding(0); this.labelTo.Name = "labelTo"; - this.labelTo.Size = new System.Drawing.Size(29, 13); + this.labelTo.Size = new System.Drawing.Size(29, 20); this.labelTo.TabIndex = 6; this.labelTo.Text = "End:"; this.labelTo.TextAlign = System.Drawing.ContentAlignment.MiddleRight; diff --git a/WowHeadParser/MainWindow.cs b/WowHeadParser/MainWindow.cs index 3af30d2..da87262 100644 --- a/WowHeadParser/MainWindow.cs +++ b/WowHeadParser/MainWindow.cs @@ -3,7 +3,6 @@ */ using System; using System.Collections.Generic; -using System.Diagnostics; using System.IO; using System.Windows.Forms; using WowHeadParser.Entities;