r565: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 21 Feb 2001 00:34:12 +0000 (00:34 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 21 Feb 2001 00:34:12 +0000 (00:34 +0000)
ChangeLog
doc/ctsim.htb
src/Makefile.am
src/Makefile.in
src/ctsim.cpp

index a46f4b8b72a3b60923c55dbb4351121a0badcee7..70247de69e06b335c3b40ef40ef2704edb428658 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+3.0.3 - Released 2/20/01
+
+       * ctsim: Fixed core dump on Linux with OpenGL
+
+       * ctsim: Fixed context-sensitive help on Linux
+
+       * ctsim: Fixed About box on Linux
+       
 3.0.2 - Released 2/20/01
 
        * scanner.cpp: Fixed bug when number of detectors was even.
index bec2e84455b2c27bc80fededed38fecef18235f8..36eec9754f7a0580078f19f7b0ba9bf66db77622 100644 (file)
Binary files a/doc/ctsim.htb and b/doc/ctsim.htb differ
index 81a5edcab3889d3475caaa82ca4d8be5e86ea3d4..35d6a695ef7f86354b1906afd2fab444e72199f1 100644 (file)
@@ -1,6 +1,6 @@
 bin_PROGRAMS=ctsim
 
-ctsim_SOURCES=ctsim.cpp docs.cpp views.cpp dialogs.cpp ctsim.h docs.h views.h dialogs.h dlgprojections.cpp dlgprojections.h dlgreconstruct.cpp dlgreconstruct.h  graph3dview.cpp graph3dview.h ctsim-map.h ctsim.xpm splash.xpm
+ctsim_SOURCES=ctsim.cpp docs.cpp views.cpp dialogs.cpp ctsim.h docs.h views.h dialogs.h dlgprojections.cpp dlgprojections.h dlgreconstruct.cpp dlgreconstruct.h  graph3dview.cpp graph3dview.h ctsim-map.h ctsim.xpm splash.xpm 
 ctsim_DEPENDENCIES=../libctgraphics/libctgraphics.a ../libctsupport/libctsupport.a ../libctsim/libctsim.a ../include/ct.h
 ctsim_LDADD=-L../libctgraphics -L../libctsupport -L../libctsim @ctlibs@
 
index 24ed3267e768a1c5ae355f50ebb0bd06a5b0a53d..0bb18c1eadf0826a325b2b5325d303952f371951 100644 (file)
@@ -92,7 +92,7 @@ wxlibs = @wxlibs@
 
 bin_PROGRAMS = ctsim
 
-ctsim_SOURCES = ctsim.cpp docs.cpp views.cpp dialogs.cpp ctsim.h docs.h views.h dialogs.h dlgprojections.cpp dlgprojections.h dlgreconstruct.cpp dlgreconstruct.h  graph3dview.cpp graph3dview.h ctsim-map.h ctsim.xpm splash.xpm
+ctsim_SOURCES = ctsim.cpp docs.cpp views.cpp dialogs.cpp ctsim.h docs.h views.h dialogs.h dlgprojections.cpp dlgprojections.h dlgreconstruct.cpp dlgreconstruct.h  graph3dview.cpp graph3dview.h ctsim-map.h ctsim.xpm splash.xpm 
 ctsim_DEPENDENCIES = ../libctgraphics/libctgraphics.a ../libctsupport/libctsupport.a ../libctsim/libctsim.a ../include/ct.h
 ctsim_LDADD = -L../libctgraphics -L../libctsupport -L../libctsim @ctlibs@
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
index c6df4ae743dce967d021bf82c80e6355beaebae4..6207a0ff5ac987517f6070daa949a7b4cd4fb692 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.83 2001/02/21 00:09:31 kevin Exp $
+**  $Id: ctsim.cpp,v 1.84 2001/02/21 00:34:12 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
@@ -72,7 +72,7 @@
 #endif
 #endif
 
-static const char* rcsindent = "$Id: ctsim.cpp,v 1.83 2001/02/21 00:09:31 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.84 2001/02/21 00:34:12 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -595,21 +595,6 @@ MainFrame::showHelp (int commandID)
 #endif
                break;
 
-        case IDH_QUICKSTART:
-#ifdef CTSIM_WINHELP
-    m_winHelp.DisplaySection (commandID);
-#else
-    m_htmlHelp.Display (_T("Quick Start"));
-#endif
-    break;
-
-       case IDH_DLG_PROJECTIONS:
-#ifdef CTSIM_WINHELP
-    m_winHelp.DisplaySection (commandID);
-#else
-    m_htmlHelp.DisplaySection (_T("IDH_DLG_PROJECTIONS"));
-#endif
-    break;
 
        default:
 #ifdef CTSIM_WINHELP