| 
					
				 | 
			
			
				@@ -7,6 +7,7 @@ namespace UI.Common 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public partial class UI_AlertUI 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GComponent target; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        public Controller m_checkType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GGraph m_graphBg; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GTextField m_txtContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GTextField m_txtTips; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -60,6 +61,7 @@ namespace UI.Common 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         private void Init(GComponent comp) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            m_checkType = comp.GetController("checkType"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_graphBg = (GGraph)comp.GetChild("graphBg"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_txtContent = (GTextField)comp.GetChild("txtContent"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_txtTips = (GTextField)comp.GetChild("txtTips"); 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -69,6 +71,7 @@ namespace UI.Common 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public void Dispose(bool disposeTarget = false) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            m_checkType = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_graphBg = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_txtContent = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_txtTips = null; 
			 |