mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 02:10:35 +05:00
merge from BR_pluginMGCleaner tag mergeto_v7_main_17jun13
This commit is contained in:
parent
dc02ba1daa
commit
ca40d2121f
@ -348,12 +348,12 @@ class MGCleanerMonPlugDialog(Ui_MGCleanerPlugDialog,QWidget):
|
||||
"""load last hypothesis saved in tail of file"""
|
||||
try:
|
||||
f=open(self.paramsFile,"r")
|
||||
except :
|
||||
except:
|
||||
QMessageBox.warning(self, "File", "Unable to open "+self.paramsFile)
|
||||
return
|
||||
try:
|
||||
text=f.read()
|
||||
except :
|
||||
except:
|
||||
QMessageBox.warning(self, "File", "Unable to read "+self.paramsFile)
|
||||
return
|
||||
f.close()
|
||||
@ -570,10 +570,10 @@ def TEST_standalone():
|
||||
"""
|
||||
works only if a salome is launched yet with a study loaded
|
||||
to launch standalone python do:
|
||||
/export/home/wambeke/2013/V6_main_MGC_CO6.4_64/APPLI/runSession
|
||||
./APPLI/runSession
|
||||
python
|
||||
or (do not works)
|
||||
python /export/home/wambeke/2013/V6_main_MGC_CO6.4_64/INSTALL/SMESH/share/salome/plugins/smesh/MGCleanerMonPlugDialog.py
|
||||
python ./INSTALL/SMESH/share/salome/plugins/smesh/MGCleanerMonPlugDialog.py
|
||||
"""
|
||||
import salome
|
||||
import SMESH
|
||||
@ -588,7 +588,6 @@ def TEST_standalone():
|
||||
# ==============================================================================
|
||||
#
|
||||
def TEST_MGCleanerMonPlugDialog():
|
||||
#print "TEST_MGCleanerMonPlugDialog"
|
||||
import sys
|
||||
from PyQt4.QtGui import QApplication
|
||||
from PyQt4.QtCore import QObject, SIGNAL, SLOT
|
||||
|
Loading…
Reference in New Issue
Block a user