From: Kevin M. Rosenberg Date: Wed, 22 Nov 2000 07:41:04 +0000 (+0000) Subject: r208: *** empty log message *** X-Git-Tag: debian-4.5.3-3~809 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=df6c3115d39298e7a365be2513af758c3df44a93 r208: *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 09c83d6..92a98ca 100644 --- 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) diff --git a/libctsim/filter.cpp b/libctsim/filter.cpp index 43b2d53..23cd226 100644 --- a/libctsim/filter.cpp +++ b/libctsim/filter.cpp @@ -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; }