From 68e8313b5c4ede4b5bc659224f4adc8db47f98c6 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 9 Jun 2002 16:20:49 +0000 Subject: [PATCH] r2113: *** empty log message *** --- ChangeLog | 6 ++++++ src/ctsim.cpp | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 28ec8ff..aa7acec 100644 --- 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 diff --git a/src/ctsim.cpp b/src/ctsim.cpp index 2757c5e..bc2a47b 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -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: -- 2.34.1