X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FMGCleanerPlug%2FMGCleanerplug_plugin.py;h=b48777839125a7cb31b0263ec287812a99ff8aed;hb=10191484fe88a27e962b8e4b57e09d390d8705c7;hp=6043b7b0a6c3534c9e8da297e30145f1e1142db2;hpb=6bac08c1a81f34d3f21c550bd92f83654b2546a5;p=modules%2Fsmesh.git diff --git a/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py b/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py index 6043b7b0a..b48777839 100644 --- a/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py +++ b/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2013-2015 EDF R&D +# Copyright (C) 2013-2016 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -22,26 +22,25 @@ # 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()