]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Do not show some console's messages by default
authorsmh <smh@opencascade.com>
Fri, 30 Apr 2004 11:57:16 +0000 (11:57 +0000)
committersmh <smh@opencascade.com>
Fri, 30 Apr 2004 11:57:16 +0000 (11:57 +0000)
src/SALOMEGUI/QAD_ObjectBrowser.cxx

index 9fa4ef038282e4f0b5b70d523c63b0f40e6f3a45..4516e99345fc19fbfa048b397596e0156f3154df 100644 (file)
@@ -73,6 +73,14 @@ using namespace std;
 #define UC_CLEAR_ID        1000014
 #define UC_SET_CURRENT_ID  1000016
 
+
+#ifdef _DEBUG_
+static int MYDEBUG = 0;
+#else
+static int MYDEBUG = 0;
+#endif
+
+
 /*!
   Small button which updates Object Browser's contents
 */
@@ -658,7 +666,7 @@ void QAD_ObjectBrowser::Update( SALOMEDS::SObject_ptr SO,
        myListViewMap[ RefSOEntry ].append( Item );
       }
       else {
-       MESSAGE("QAD_ObjectBrowser::Update : noname item: "<<CSO->GetID());
+       if(MYDEBUG) MESSAGE("QAD_ObjectBrowser::Update : noname item: "<<CSO->GetID());
       }
     } else {
       // getting Value
@@ -675,7 +683,7 @@ void QAD_ObjectBrowser::Update( SALOMEDS::SObject_ptr SO,
        myListViewMap[ CSOEntry ].append( Item );
       } 
       else {
-       MESSAGE("QAD_ObjectBrowser::Update : noname item: "<<CSO->GetID());
+       if(MYDEBUG) MESSAGE("QAD_ObjectBrowser::Update : noname item: "<<CSO->GetID());
       }
       // adding other attributes 
       if (Item) {
@@ -860,8 +868,8 @@ void QAD_ObjectBrowser::Update()
          QString msg;
          QAD_ResourceMgr* resMgr = QAD_Desktop::createResourceManager();
          if ( resMgr ) {
-           MESSAGE ( " Component " << aName->Value() )
-             MESSAGE ( " Icon " << aPixmap->GetPixMap() )
+           if(MYDEBUG) MESSAGE ( " Component " << aName->Value() );
+           if(MYDEBUG) MESSAGE ( " Icon " << aPixmap->GetPixMap() );
            if(resMgr->loadResources( QAD_Application::getDesktop()->getComponentName(QString(aName->Value())), msg )) {
              QPixmap icon ( resMgr->loadPixmap( QAD_Application::getDesktop()->getComponentName(QString(aName->Value())),
                                                 tr(aPixmap->GetPixMap()) /*tr( "ICON_OBJBROWSER_" + theComponent )*/ ));