]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
*** empty log message ***
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.cxx
index 83db82fb31b6627cd8b873d1d6a2d18197f4709f..16cce2b3927f6d8813ad216166b91e7152e57327 100644 (file)
@@ -45,8 +45,6 @@ namespace bbtk
                : wxFrame(parent, -1, _T("bbtkGEditor"),wxDefaultPosition, wxSize(1200,800))
        {
 
-               printf ("EED %p wxGUIEditorGraphicBBS()\n" , this );
-
                _frameAUIMgr = new wxAuiManager(this);
                
 
@@ -562,7 +560,6 @@ namespace bbtk
                wxFileDialog * openFileDialog = new wxFileDialog(this,wxT("Open diagram"),wxEmptyString,wxT(""),wxT("*.bbg"),wxOPEN|wxFILE_MUST_EXIST);
                if (openFileDialog->ShowModal() == wxID_OK)
                {
-printf("EED %p wxGUIEditorGraphicBBS::OnOpenDiagram 1\n", this);
                        wxString fileName = openFileDialog->GetPath();
                        
                        ifstream inputStream;
@@ -576,7 +573,6 @@ printf("EED %p wxGUIEditorGraphicBBS::OnOpenDiagram 1\n", this);
                        _tabsMgr->loadDiagram(inputStream);
                        
                        inputStream.close();
-printf("EED %p wxGUIEditorGraphicBBS::OnOpenDiagram 2\n", this);
                }
                refreshGUIControls();
        }