Improve wxFont usage
[ctsim.git] / src / dlgprojections.cpp
index 6058b5c0499bee1d770d246069cfdbb9341465de..3c5854e6ff683ee16e1b5d6094164abdc1cac270 100644 (file)
@@ -7,9 +7,7 @@
  **   Date Started:  August 2000
  **
  **  This is part of the CTSim program
- **  Copyright (c) 1983-2001 Kevin Rosenberg
- **
- **  $Id$
+ **  Copyright (c) 1983-2009 Kevin Rosenberg
  **
  **  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
@@ -58,7 +56,7 @@ BEGIN_EVENT_TABLE(ProjectionsDialog, wxDialog)
   IMPLEMENT_CLASS(ProjectionsDialog, wxDialog)
 
 
-  ProjectionsDialog::ProjectionsDialog (Scanner& rScanner, Projections& rProj, const Phantom& rPhantom, const int iTrace, wxWindow *parent)
+ProjectionsDialog::ProjectionsDialog (Scanner& rScanner, Projections& rProj, const Phantom& rPhantom, const int iTrace, wxWindow *parent)
 : wxDialog(parent, -1, _T("Collect Projections"), wxDefaultPosition), m_rScanner(rScanner), m_rProjections(rProj), m_rPhantom(rPhantom),
       m_pSGPDriver(NULL), m_pSGP(NULL), m_iTrace(iTrace), m_pDC(NULL), m_btnAbort(0), m_btnPause(0), m_btnStep(0)
 {
@@ -127,7 +125,7 @@ BEGIN_EVENT_TABLE(ProjectionsDialog, wxDialog)
 
   wxYield();     // Update the display
 
-  m_pSGP->setTextPointSize(10);
+  m_pSGP->setTextPointSize(7);
 #ifdef __WXMAC__
   //  MacUpdateImmediately();
 #endif
@@ -298,4 +296,3 @@ ProjectionsDialog::~ProjectionsDialog()
   delete m_pSGPDriver;
   delete m_pDC;
 }
-