r459: no message
[ctsim.git] / src / ctsim.cpp
index c2c952eb3706165800d7d329942a51f370bde966..7a8d50551002855df42b55be9821f134358ee976 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.52 2001/01/28 03:48:55 kevin Exp $
+**  $Id: ctsim.cpp,v 1.53 2001/01/28 04:24:03 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.52 2001/01/28 03:48:55 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.53 2001/01/28 04:24:03 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -189,7 +189,7 @@ CTSimApp::OnInit()
     *m_pLog << "Cannot initialize the Windows Help system\n";
 #endif
   if (! m_pFrame->getHtmlHelpController().Initialize(::wxGetCwd() + "/ctsim"))
-    *m_pLog << "Cannot initialize the HTML Help system";
+    *m_pLog << "Cannot initialize the HTML Help system\n";
 
   return true;
 }
@@ -442,7 +442,7 @@ MainFrame::OnCreateFilter (wxCommandEvent& WXUNUSED(event))
       << ", inputScale=" << m_dDefaultFilterInputScale << ", outputScale=" << m_dDefaultFilterOutputScale;
     *theApp->getLog() << os.str().c_str() << "\n";
     wxString filename = "untitled.if";
-    ImageFileDocument* pFilterDoc = dynamic_cast<ImageFileDocument*>(theApp->getDocManager()->CreateDocument ("untitled.if", wxDOC_SILENT));
+    ImageFileDocument* pFilterDoc = theApp->newImageDoc();
     if (! pFilterDoc) {
       sys_error (ERR_SEVERE, "Unable to create filter image");
       return;
@@ -455,6 +455,8 @@ MainFrame::OnCreateFilter (wxCommandEvent& WXUNUSED(event))
       pFilterDoc->Modify (true);
     pFilterDoc->UpdateAllViews();
     pFilterDoc->GetFirstView()->OnUpdate (NULL, NULL);
+       pFilterDoc->getView()->getFrame()->SetClientSize(m_iDefaultFilterXSize, m_iDefaultFilterYSize);
+       pFilterDoc->getView()->getFrame()->Show(true);
   }
 }