r208: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 22 Nov 2000 07:41:04 +0000 (07:41 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 22 Nov 2000 07:41:04 +0000 (07:41 +0000)
ChangeLog
libctsim/filter.cpp

index 09c83d6fc92db21f6b0e6f2973dadf73a4f44468..92a98cafb1274fa2a7e3605e19c8dfb7e868dbb4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2.0.4 - 11/22/00
+   Fixed typo in filter.cpp
+       
+2.0.3 - 11/20/00
+   Fixed bug in generation of binary PGM files
+   Fixed MPI compilation bug in phm2pj.cpp
+   Inverted y-axis output for pj2if (bug alert from Ian Kay)
+       
 2.0.2 - 11/8/00
    Additions to man pages (Ian Kay)
    Fix problem with reading of ASCII phantom files (Ian Kay)
index 43b2d539320af25a54381ae8ec224faff2e8febf..23cd2268a1192768f96092fd4220b515a05395e1 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: filter.cpp,v 1.28 2000/11/10 15:29:37 kevin Exp $
+**  $Id: filter.cpp,v 1.29 2000/11/22 07:38:52 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -228,7 +228,7 @@ SignalFilter::convertFilterNameToID (const char *filterName)
   int filterID = FILTER_INVALID;
 
   for (int i = 0; i < s_iFilterCount; i++)
-cc    if (strcasecmp (filterName, s_aszFilterName[i]) == 0) {
+    if (strcasecmp (filterName, s_aszFilterName[i]) == 0) {
       filterID = i;
       break;
     }