From 58c3e92f1c413443e776c0d5721abcb8422ec60e Mon Sep 17 00:00:00 2001 From: John Date: Tue, 20 Jul 2010 14:05:47 +0000 Subject: [PATCH] --- PROMS/LBWordLibrary/LBObjectExtension.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/PROMS/LBWordLibrary/LBObjectExtension.cs b/PROMS/LBWordLibrary/LBObjectExtension.cs index e699b555..57193211 100644 --- a/PROMS/LBWordLibrary/LBObjectExtension.cs +++ b/PROMS/LBWordLibrary/LBObjectExtension.cs @@ -290,8 +290,8 @@ namespace LBWordLibrary { foreach (string symbolFont in SymbolFontName) if (symbolFont.ToUpper() == fontName.ToUpper()) - return false; - return true; + return true; + return false; } /// /// Checks to see if the document contains symbol characters @@ -317,8 +317,10 @@ namespace LBWordLibrary if (IsSymbolFont(myRange.Font.Name)) { Console.WriteLine("Font '{0}' has Symbols", myRange.Font.Name); - return true; + //return true; } + else + return true; offset = newOffset; } return false;