r2113: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 9 Jun 2002 16:20:49 +0000 (16:20 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 9 Jun 2002 16:20:49 +0000 (16:20 +0000)
ChangeLog
src/ctsim.cpp

index 28ec8ffa23c85a63fcd03172e3d83f379ffff457..aa7acec2438f68251e60a6444e1d5f106ddbbd46 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
+Jul 1, 2002  Version 3.5.5
+       
+       * Fix printing of version number
+
+       
 Jun 8, 2002  Version 3.5.4
+
        * Print version number in log window with About command
        
        * Fix problem with captions not showing on some windows. Reworked
index 2757c5ee61777a84408959fc52f178a436a9f9d9..bc2a47bf6b5cd8a3abe89819e855712a98ff9ee0 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.115 2002/06/06 22:50:24 kevin Exp $
+**  $Id: ctsim.cpp,v 1.116 2002/06/09 16:20: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
@@ -70,7 +70,7 @@
 #endif
 #endif
 
-static const char* rcsindent = "$Id: ctsim.cpp,v 1.115 2002/06/06 22:50:24 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.116 2002/06/09 16:20:07 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -119,9 +119,9 @@ CTSimApp::OnInit()
     case O_VERSION:
       std::cout << rcsindent << std::endl;
 #ifdef CTSIMVERSION
-      std::cout << "Version: CTSIMVERSION" << std::endl;
+      std::cout << "Version: " << CTSIMVERSION << std::endl;
 #elif defined(VERSION)
-      std::cout << "Version: VERSION" << std::endl;
+      std::cout << "Version: " << VERSION << std::endl;
 #endif
       exit(0);
     case O_HELP: