removed unnecessary float conversion
This commit is contained in:
parent
a497f7f2a0
commit
a0d27289ae
@ -41,8 +41,8 @@ namespace BreCalClient
|
|||||||
}
|
}
|
||||||
this.Ship.Imo = this.integerUpDownIMO.Value;
|
this.Ship.Imo = this.integerUpDownIMO.Value;
|
||||||
this.Ship.Callsign = this.textBoxCallsign.Text.ToUpper().Trim();
|
this.Ship.Callsign = this.textBoxCallsign.Text.ToUpper().Trim();
|
||||||
this.Ship.Length = (float?) this.doubleUpDownLength.Value;
|
this.Ship.Length = this.doubleUpDownLength.Value;
|
||||||
this.Ship.Width = (float?) this.doubleUpDownWidth.Value;
|
this.Ship.Width = this.doubleUpDownWidth.Value;
|
||||||
this.DialogResult = true;
|
this.DialogResult = true;
|
||||||
this.Close();
|
this.Close();
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user