]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIHtmlBrowser.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxGUIHtmlBrowser.cxx
index 4cfe254f3e6a9752f4d4144f81cfe4ee4cfd2bb1..6e474755eedae40cdc0c38055617dfa7c8aeed7b 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIHtmlBrowser.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/03/21 14:59:39 $
-  Version:   $Revision: 1.3 $
+  Date:      $Date: 2008/04/22 14:30:25 $
+  Version:   $Revision: 1.5 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -180,8 +180,6 @@ namespace bbtk
   //========================================================================
   bool WxGUIHtmlBrowser::GoTo(std::string& file)
   { 
-    //  std::cout << "goto"<<std::endl;
-
     bool r = mwxHtmlWindow->LoadPage(std2wx(file));
     UpdateURL();
     return r;
@@ -191,7 +189,6 @@ namespace bbtk
   //========================================================================
   void WxGUIHtmlBrowser::OnBackButton(wxCommandEvent& )
   {
-    //    std::cout << "back"<<std::endl;
     mwxHtmlWindow->HistoryBack();
     UpdateURL();
   }
@@ -200,7 +197,6 @@ namespace bbtk
   //========================================================================
   void WxGUIHtmlBrowser::OnForwardButton(wxCommandEvent& )
   {
-    //    std::cout << "forward"<<std::endl;
     mwxHtmlWindow->HistoryForward();
     UpdateURL();
   }
@@ -294,7 +290,6 @@ namespace bbtk
   //========================================================================
   void WxGUIHtmlBrowser::OnLinkClicked(wxHtmlLinkEvent& e)
   { 
-    std::cout << "BrOnLink"<<std::endl; 
   
     bool go = true;
     if (mUser)