Salome HOME
Merge multi-study removal branch.
[modules/smesh.git] / src / Tools / MGCleanerPlug / MGCleanerplug_plugin.py
index 9b356cece2abef1579bc11519c99dc05f4684426..b48777839125a7cb31b0263ec287812a99ff8aed 100644 (file)
 # if not, copy this file as ${HOME}/Plugins/smesh_plugins.py or ${APPLI}/Plugins/smesh_plugins.py
 
 def MGCleanerLct(context):
-  # get context study, studyId, salomeGui
+  # get context study, salomeGui
   study = context.study
-  studyId = context.studyId
   sg = context.sg
   
   import os
   import subprocess
   import tempfile
-  from PyQt4 import QtCore
-  from PyQt4 import QtGui
-  from PyQt4.QtGui import QFileDialog
-  from PyQt4.QtGui import QMessageBox
+  from qtsalome import QFileDialog, QMessageBox
   
   #prior test to avoid unnecessary user GUI work with ending crash
   try :
-      os.environ['DISTENE_LICENCE_FILE_FOR_MGCLEANER']
+      os.environ['DISTENE_LICENSE_FILE']
   except:
-      QMessageBox.warning(None,"Products","Distene's product MeshGem Cleaner is not installed.\nrequired environment variable:\nDISTENE_LICENCE_FILE_FOR_MGCLEANER='/.../dlim8.var.sh'")
+      QMessageBox.warning(None, "Products", """\
+Distene's product MeshGem Cleaner is not installed.
+required environment variable:
+DISTENE_LICENSE_FILE='.../dlim8.var.sh'""")
       return
   import MGCleanerMonPlugDialog
-  window=MGCleanerMonPlugDialog.getDialog()
+  window = MGCleanerMonPlugDialog.getDialog()
   window.show()