Changed My DB reference to Generic

Fixed a memory issue when opening Verison Properties
Declare MissingTokens variable as static to reduce repetition in the Error Log.
This commit is contained in:
Rich
2011-10-06 15:57:46 +00:00
parent faf4e1b5d9
commit e80a615fa6
3 changed files with 5 additions and 6 deletions

View File

@@ -887,7 +887,7 @@ namespace Volian.Print.Library
if (svgText.Font.Underline && svgText.Text.EndsWith(" ")) svgText.Text = svgText.Text.Substring(0, svgText.Text.Length - 1) + "\xA0";// replace last space with a hardspace
return svgText;
}
private List<string> _MissingTokens = new List<string>();
private static List<string> _MissingTokens = new List<string>();
protected override string ReplacePageListToken(Match match)
{
switch (match.Value)