From 9aae459274de57de03911e022fac03cc52abda01 Mon Sep 17 00:00:00 2001 From: Nathan Crawford Date: Mon, 17 Aug 2009 18:53:06 +0000 Subject: [PATCH] Updated GPL contact info, renamed enum member to fit actual use. --- PesFile/PesFile.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PesFile/PesFile.cs b/PesFile/PesFile.cs index 44502f0..c6c9032 100644 --- a/PesFile/PesFile.cs +++ b/PesFile/PesFile.cs @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. A copy of the full GPL 2 license can be found in the docs directory. -You can contact me at http://www.njcrawford.com/contact.php. +You can contact me at http://www.njcrawford.com/contact/. */ using System; @@ -29,7 +29,7 @@ using System.Drawing; namespace PesFile { - public enum statusEnum { NotOpen, IOError, ReadError, Ready }; + public enum statusEnum { NotOpen, IOError, ParseError, Ready }; public class stitchBlock { public Color color; @@ -97,7 +97,7 @@ namespace PesFile } if (!startFileSig.StartsWith("#PES"))//this is not a file that we can read { - readyStatus = statusEnum.ReadError; + readyStatus = statusEnum.ParseError; lastError = "Missing #PES at beginning of file"; fileIn.Close(); return;