r11859: Canonicalize whitespace
[ctsim.git] / libctsim / trace.cpp
index 73636ed30cd87f328713c0ce143f5c92144f4255..5caa3849f799737718db687b62d59c389a654a6a 100644 (file)
@@ -1,14 +1,14 @@
 /*****************************************************************************
 ** FILE IDENTIFICATION
 **
-**   Name:        trace.cpp        Class for trace
+**   Name:         trace.cpp        Class for trace
 **   Programmer:   Kevin Rosenberg
 **   Date Started: June 2000
 **
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: trace.cpp,v 1.4 2003/07/04 21:39:40 kevin Exp $
+**  $Id$
 **
 **  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
@@ -40,7 +40,7 @@ const int Trace::BIT_PROJECTIONS = 0x0004;
 const int Trace::BIT_PLOT = 0x0008;
 const int Trace::BIT_CLIPPING = 0x0010;
 
-const char* Trace::s_aszTraceName[] = 
+const char* Trace::s_aszTraceName[] =
 {
   "none",
   "console",
@@ -50,7 +50,7 @@ const char* Trace::s_aszTraceName[] =
   "clipping",
 };
 
-const char* Trace::s_aszTraceTitle[] = 
+const char* Trace::s_aszTraceTitle[] =
 {
   "None",
   "Console",
@@ -84,16 +84,16 @@ Trace::convertTraceIDToTitle (const int idTrace)
 
   return (title);
 }
-      
+
 int
-Trace::convertTraceNameToID (const char* const traceName) 
+Trace::convertTraceNameToID (const char* const traceName)
 {
   int id = Trace::TRACE_INVALID;
 
   for (int i = 0; i < s_iTraceCount; i++)
       if (strcasecmp (traceName, s_aszTraceName[i]) == 0) {
-         id = i;
-         break;
+          id = i;
+          break;
       }
 
   return (id);