Remove debug printout for XYPlot RO
This commit is contained in:
		@@ -965,10 +965,8 @@ namespace VEPROMS.CSLA.Library
 | 
				
			|||||||
				string resstr = rtnstr.Substring(0, indx);
 | 
									string resstr = rtnstr.Substring(0, indx);
 | 
				
			||||||
				int endHsp = rtnstr.IndexOf(")", indx);
 | 
									int endHsp = rtnstr.IndexOf(")", indx);
 | 
				
			||||||
				string tmpstr = rtnstr.Substring(indx + 5, endHsp - indx - 5);
 | 
									string tmpstr = rtnstr.Substring(indx + 5, endHsp - indx - 5);
 | 
				
			||||||
				if (!tmpstr.Contains("<<G")) // B2017-012 Don't ccovert space to hardspaces for XY Plots.
 | 
									if (!tmpstr.Contains("<<G")) // B2017-012 Don't convert space to hardspaces for XY Plots.
 | 
				
			||||||
					tmpstr = tmpstr.Replace(" ", @"\u160?");
 | 
										tmpstr = tmpstr.Replace(" ", @"\u160?");
 | 
				
			||||||
				else
 | 
					 | 
				
			||||||
					Console.WriteLine(tmpstr);
 | 
					 | 
				
			||||||
				resstr = resstr + tmpstr;
 | 
									resstr = resstr + tmpstr;
 | 
				
			||||||
				rtnstr = resstr + rtnstr.Substring(endHsp + 1);
 | 
									rtnstr = resstr + rtnstr.Substring(endHsp + 1);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user