|
@@ -14,7 +14,7 @@ namespace UI.CommonGame
|
|
|
public GTextField m_txtName;
|
|
|
public GButton m_btnPlus;
|
|
|
public GButton m_btnMinus;
|
|
|
- public GTextField m_txtCount;
|
|
|
+ public GTextInput m_txtCount;
|
|
|
public GLoader m_iconPrice;
|
|
|
public GTextField m_txtPrice;
|
|
|
public GTextField m_txtBuyTips;
|
|
@@ -74,7 +74,7 @@ namespace UI.CommonGame
|
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
|
m_btnPlus = (GButton)comp.GetChild("btnPlus");
|
|
|
m_btnMinus = (GButton)comp.GetChild("btnMinus");
|
|
|
- m_txtCount = (GTextField)comp.GetChild("txtCount");
|
|
|
+ m_txtCount = (GTextInput)comp.GetChild("txtCount");
|
|
|
m_iconPrice = (GLoader)comp.GetChild("iconPrice");
|
|
|
m_txtPrice = (GTextField)comp.GetChild("txtPrice");
|
|
|
m_txtBuyTips = (GTextField)comp.GetChild("txtBuyTips");
|