r156: *** empty log message ***
[ctsim.git] / src / ctsim.cpp
index a7417fed387b43cacbd41db94961e760e36d5e81..71b053906de0d2fa31026a1df20117b133e23bde 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.6 2000/07/19 04:33:27 kevin Exp $
+**  $Id: ctsim.cpp,v 1.7 2000/07/20 11:17:31 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
@@ -104,7 +104,7 @@ CTSimApp::OnInit(void)
     //// Make a menubar
     wxMenu *file_menu = new wxMenu;
     
-    file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "&Create Phantom...");
+    file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...");
     file_menu->Append(wxID_OPEN, "&Open...");
     
     file_menu->AppendSeparator();
@@ -199,10 +199,9 @@ MainFrame::OnCreatePhantom(wxCommandEvent& WXUNUSED(event))
     DialogGetPhantom dialogPhantom (this, Phantom::PHM_HERMAN_STR);
     int dialogReturn = dialogPhantom.ShowModal();
     if (dialogReturn == wxID_OK) {
-      string selection = dialogPhantom.getPhantom();
+      wxString selection = dialogPhantom.getPhantom();
       *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n";
-      wxString filename = selection.c_str();
-      filename += ".phm";
+      wxString filename = selection + ".phm";
       theApp->getDocManager()->CreateDocument(filename, wxDOC_SILENT);
     }