Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.WinForms
changeset 132:e00332dc1618
Fixes #259: "Equip All" doesn't get translated
* Use new IBBRadioButton
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 22 Mar 2010 20:57:51 +0000 |
parents | 056facf5c614 |
children | acb4456598ce |
files | UI/EquipmentAmountControl.Designer.cs UI/EquipmentAmountControl.cs |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/UI/EquipmentAmountControl.Designer.cs Sat Mar 20 20:59:40 2010 +0000 +++ b/UI/EquipmentAmountControl.Designer.cs Mon Mar 22 20:57:51 2010 +0000 @@ -30,7 +30,7 @@ { this.rbNumeric = new System.Windows.Forms.RadioButton(); this.rbPercentage = new System.Windows.Forms.RadioButton(); - this.rbEquipAll = new System.Windows.Forms.RadioButton(); + this.rbEquipAll = new IBBoard.Windows.Forms.IBBRadioButton(); this.numeric = new System.Windows.Forms.NumericUpDown(); this.percentage = new System.Windows.Forms.NumericUpDown(); this.lblPercentSign = new System.Windows.Forms.Label(); @@ -126,7 +126,7 @@ private System.Windows.Forms.RadioButton rbNumeric; private System.Windows.Forms.RadioButton rbPercentage; - private System.Windows.Forms.RadioButton rbEquipAll; + private IBBoard.Windows.Forms.IBBRadioButton rbEquipAll; private System.Windows.Forms.NumericUpDown numeric; private System.Windows.Forms.NumericUpDown percentage; private System.Windows.Forms.Label lblPercentSign;
--- a/UI/EquipmentAmountControl.cs Sat Mar 20 20:59:40 2010 +0000 +++ b/UI/EquipmentAmountControl.cs Mon Mar 22 20:57:51 2010 +0000 @@ -9,6 +9,7 @@ using IBBoard.CustomMath; using IBBoard.Lang; using IBBoard.Limits; +using IBBoard.Windows.Forms; using IBBoard.Windows.Forms.I18N; using IBBoard.Windows.Forms.Util; using IBBoard.WarFoundry.API;