r219: *** empty log message ***
[ctsim.git] / libctsim / filter.cpp
index 43b2d539320af25a54381ae8ec224faff2e8febf..097a1f30e46a2722aba52ad00c188a6ed5676702 100644 (file)
@@ -1,3 +1,4 @@
+#include "complex"
 /*****************************************************************************
 ** File IDENTIFICATION
 ** 
@@ -9,7 +10,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.30 2000/11/28 14:54:07 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 +229,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;
     }