]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fix compilation error in DEBUG mode
authoreap <eap@opencascade.com>
Fri, 12 Oct 2018 10:38:47 +0000 (13:38 +0300)
committereap <eap@opencascade.com>
Fri, 12 Oct 2018 10:38:47 +0000 (13:38 +0300)
src/SALOME_PYQT/SALOME_PYQT_GUILight/SALOME_PYQT_PyModule.cxx

index 787d8d5fd7ddac32cc8ade196663c42ece540f68..0272b77502455f334544b61c9f94ab28fc95d08c 100644 (file)
@@ -66,7 +66,7 @@ const int DEFAULT_GROUP = 40;
 QMutex myInitMutex;
 
 /*! DEBUG mode */
-const bool DEBUG = false;
+const bool theDEBUG = false;
 
 /*!
   \var IsCallOldMethods
@@ -168,17 +168,17 @@ public:
   FuncMsg( const QString& funcName )
   {
     myName = funcName;
-    if ( DEBUG )
+    if ( theDEBUG )
       MESSAGE( qPrintable( myName ) << " [ begin ]" );
   }
   ~FuncMsg()
   {
-    if ( DEBUG )
+    if ( theDEBUG )
       MESSAGE( qPrintable( myName ) << " [ end ]" );
   }
   void message( const QString& msg )
   {
-    if ( DEBUG )
+    if ( theDEBUG )
       MESSAGE( qPrintable( myName ) << " : " << qPrintable( msg ) );
   }
 private: