X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fdocs.cpp;h=096a61b6a0b33828eca4f45d350e0a19a71608cc;hp=034cfe710041604be7815baf7575c92feb095ee6;hb=92a0f68cb5d5062787b0cbb2664fafe2b2c9ae37;hpb=9324f74c9b1dcbb6aae655dbb24ca05284a144df diff --git a/src/docs.cpp b/src/docs.cpp index 034cfe7..096a61b 100644 --- a/src/docs.cpp +++ b/src/docs.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: docs.cpp,v 1.4 2000/12/16 06:12:47 kevin Exp $ +** $Id: docs.cpp,v 1.5 2000/12/17 22:30:34 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 @@ bool ImageFileDocument::OnOpenDocument(const wxString& filename) wxString untitledFilename = theApp->getUntitledFilename(); SetFilename (untitledFilename, true); } else { - if (! m_imageFile.fileRead (filename)) { + if (! m_imageFile.fileRead (filename.c_str())) { *theApp->getLog() << "Unable to read image file " << filename << "\n"; return false; } @@ -106,7 +106,7 @@ IMPLEMENT_DYNAMIC_CLASS(ProjectionFileDocument, wxDocument) bool ProjectionFileDocument::OnSaveDocument(const wxString& filename) { - if (! m_projectionFile.write (filename)) { + if (! m_projectionFile.write (filename.c_str())) { *theApp->getLog() << "Unable to write projection file " << filename << "\n"; return false; } @@ -121,7 +121,7 @@ bool ProjectionFileDocument::OnOpenDocument(const wxString& filename) wxString untitledFilename = theApp->getUntitledFilename(); SetFilename (untitledFilename, true); } else { - if (! m_projectionFile.read (filename)) { + if (! m_projectionFile.read (filename.c_str())) { *theApp->getLog() << "Unable to read projection file " << filename << "\n"; return false; }