From: boulant Date: Tue, 4 Sep 2012 13:18:12 +0000 (+0000) Subject: Small Fix and comments in the package GuiHelpers X-Git-Tag: V6_6_0a1~40 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=11694e56543305474b612bae29df83b7844178e0;p=modules%2Fgui.git Small Fix and comments in the package GuiHelpers --- diff --git a/src/GuiHelpers/QtHelper.hxx b/src/GuiHelpers/QtHelper.hxx index de40c7a10..59e2bf32a 100644 --- a/src/GuiHelpers/QtHelper.hxx +++ b/src/GuiHelpers/QtHelper.hxx @@ -56,7 +56,7 @@ #include #define QDEBUG qWarning() //#define QDEBUG qDebug() -#define QLOG(data) QDEBUG << "[XSALOME] " << data +#define QLOG(data) QDEBUG << __FILE__<<" ["<<__LINE__<<"] : " << data #ifdef LOG #undef LOG #endif diff --git a/src/GuiHelpers/SALOME_AppStudyEditor.hxx b/src/GuiHelpers/SALOME_AppStudyEditor.hxx index 5eb0c0eee..9c05d736d 100644 --- a/src/GuiHelpers/SALOME_AppStudyEditor.hxx +++ b/src/GuiHelpers/SALOME_AppStudyEditor.hxx @@ -29,6 +29,11 @@ #include "SALOME_StudyEditor.hxx" +/*! + * This class is a specialization of the KERNEL StudyEditor for + * the GUI context. The concept of active study is introduced here + * while it does not exist in the pure KERNEL context. + */ class SALOME_AppStudyEditor: public SALOME_StudyEditor { public: SALOME_AppStudyEditor(SalomeApp_Application * salomeApp);