This commit is contained in:
John Jenko 2010-07-20 14:05:47 +00:00
parent 66b6d23501
commit 58c3e92f1c

View File

@ -290,8 +290,8 @@ namespace LBWordLibrary
{ {
foreach (string symbolFont in SymbolFontName) foreach (string symbolFont in SymbolFontName)
if (symbolFont.ToUpper() == fontName.ToUpper()) if (symbolFont.ToUpper() == fontName.ToUpper())
return false; return true;
return true; return false;
} }
/// <summary> /// <summary>
/// Checks to see if the document contains symbol characters /// Checks to see if the document contains symbol characters
@ -317,8 +317,10 @@ namespace LBWordLibrary
if (IsSymbolFont(myRange.Font.Name)) if (IsSymbolFont(myRange.Font.Name))
{ {
Console.WriteLine("Font '{0}' has Symbols", myRange.Font.Name); Console.WriteLine("Font '{0}' has Symbols", myRange.Font.Name);
return true; //return true;
} }
else
return true;
offset = newOffset; offset = newOffset;
} }
return false; return false;