]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/button.cxx
#2647 creaMaracasVisu Feature New Normal - Merge creaButtonContainer BRANCH
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / button.cxx
index 7c81882f3386babdcd6510b4c0b71080a56cf903..69d72c1ee7cc0ac58382387f2179478db0ecf993 100644 (file)
@@ -39,8 +39,6 @@ namespace creaButtonContainer
                // ----------------------------------------------------------------------------------
                Button::Button( wxWindow* parent, long id, ButtonPair* pair )           
                {
-                       std::cout<< "MLER | Button::Button()" << std::endl;
-
                        this->m_ButtonPair                      = pair;
                        StringType wXbuttonName         = this->m_ButtonPair->first->first;
                        BitmapType wXicon               = this->m_ButtonPair->first->second;
@@ -63,7 +61,6 @@ namespace creaButtonContainer
                StringType
                Button::GetButtonName( )
                {
-                       std::cout<< "MLER | Button::GetButtonName( )" << std::endl;
                        return ( this->m_ButtonPair->first->first );
                }
 
@@ -71,7 +68,6 @@ namespace creaButtonContainer
                BitmapType
                Button::GetIcon( )
                {
-                       std::cout<< "MLER | Button::GetIcon( )" << std::endl;
                        return ( this->m_ButtonPair->first->second );
                }               
 
@@ -86,7 +82,6 @@ namespace creaButtonContainer
                StringType
                Button::GetDescription( )
                {
-                       std::cout<< "MLER | Button::GetDescription( )" << std::endl;
                        return ( this->m_ButtonPair->second->first );
                }
                
@@ -94,14 +89,12 @@ namespace creaButtonContainer
                void
                Button::Execute( )
                {
-                       std::cout<< "MLER | Button::Execute( )" << std::endl;
                        try
                        {
                                TFunctor* vTable[ ] =
                                { this->m_ButtonPair->second->second };
 
                                vTable[ 0 ]->Call( this->m_ButtonPair->first->first );
-                               std::cout<< "Call Button: " << this->m_ButtonPair->first->first  <<std::endl;
                        }//yrt
                        catch ( const std::exception& e )
                        {