X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2FMGCleanerPlug%2FMGCleanerplug_plugin.py;h=89c194f591ab6edab32c5e1afc260aba6965658c;hp=18893f886a03a61dee16c7de7fe3e80f2c568b36;hb=0f0bf7c72871fc015ec1637067cd1d58e61395b9;hpb=b0a908c0d20341651771d0249fb10882f54b2aad;ds=sidebyside diff --git a/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py b/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py index 18893f886..89c194f59 100644 --- a/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py +++ b/src/Tools/MGCleanerPlug/MGCleanerplug_plugin.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2006-2014 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 @@ -30,18 +30,18 @@ def MGCleanerLct(context): 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()