X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGUI_PY%2Fgenericdialog.py;h=8b8be1710647544dad229a77e2ddf3bcc7e11ae2;hb=630432f662544c0b3928874eb6825ba3bffa668b;hp=0fea2f25b65e76cf48d766a4bff8bee48fc7828d;hpb=963d72a615df404c5522b31212a908532dc87eff;p=modules%2Fgui.git diff --git a/src/GUI_PY/genericdialog.py b/src/GUI_PY/genericdialog.py index 0fea2f25b..8b8be1710 100644 --- a/src/GUI_PY/genericdialog.py +++ b/src/GUI_PY/genericdialog.py @@ -1,5 +1,5 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2010-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2010-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -113,16 +113,16 @@ class GenericDialog(QDialog): # def TEST_GenericDialog(): import sys - from qtsalome import QApplication, Connect + from qtsalome import QApplication app = QApplication(sys.argv) - Connect(app, "lastWindowClosed()", app, "quit()") + app.lastWindowClosed.connect(app.quit) dlg=GenericDialog() dlg.displayAndWait() if dlg.wasOk(): - print "OK has been pressed" + print("OK has been pressed") else: - print "Cancel has been pressed" + print("Cancel has been pressed") if __name__ == "__main__": TEST_GenericDialog()