r445: no message
[ctsim.git] / src / ctsim.cpp
index 01f9e8e949e963c706c4558a1cb064251af440ca..bbb3d4b7c2a7eeb036c3baf4f62fad1c3fa7c6a3 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.47 2001/01/27 01:54:55 kevin Exp $
+**  $Id: ctsim.cpp,v 1.48 2001/01/27 01:57:29 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.47 2001/01/27 01:54:55 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.48 2001/01/27 01:57:29 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -151,7 +151,7 @@ CTSimApp::OnInit()
   int xDisplay, yDisplay;
   ::wxDisplaySize (&xDisplay, &yDisplay);
   m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), 
-    wxSize(nearest<int>(xDisplay * .75), nearest<int>(yDisplay * .755), wxDEFAULT_FRAME_STYLE);
+    wxSize(nearest<int>(xDisplay * .75), nearest<int>(yDisplay * .755)), wxDEFAULT_FRAME_STYLE);
   
   setIconForFrame (m_pFrame);
   m_pFrame->Centre(wxBOTH);
@@ -376,7 +376,9 @@ void
 MainFrame::OnSize (wxSizeEvent& event)
 {
 #ifdef CTSIM_MDI
-  wxSize sizeClient = wxMDIParentFrame::GetClientSize();
+  int xSize, ySize;
+  wxMDIParentFrame::GetClientSize(&xSize, &ySize);
+  wxSize sizeClient (xSize, ySize);
 #else
   wxSize sizeClient = GetClientSize();
 #endif