Salome HOME
Copyright update 2022
[modules/smesh.git] / src / Tools / Verima / Gui / monEditor.py
index 13b5c9d4953fb90212d69347a7732bf18d30f065..1414fed86a4a37f3d7426392f07205c40d6d9b1f 100644 (file)
@@ -1,3 +1,22 @@
+# Copyright (C) 2013-2022  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
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
 from qtsalome import *
 
 class TableEditor(QDialog):
@@ -17,7 +36,7 @@ class TableEditor(QDialog):
          quitButton=QPushButton("Quit")
          buttonBox=QDialogButtonBox(Qt.Vertical)
          buttonBox.addButton(quitButton, QDialogButtonBox.RejectRole);
-         quitButton.clicked.connect(self.close())
+         quitButton.clicked.connect(self.close)
 
          mainLayout = QHBoxLayout(self)
          mainLayout.addWidget(self.view)
@@ -31,7 +50,7 @@ class TableEditor(QDialog):
          self.view.adjustSize()
          self.adjustSize()
          self.view.pressed[QModelIndex].connect(self.donneLigne)
-         self.view.itemPressed[QTableWidgetItem].conect(self.donneLigne)
+         self.view.itemPressed[QTableWidgetItem].connect(self.donneLigne)
          self.view.clicked[QModelIndex].connect(self.donneLigne)
          self.view.clicked.connect(self.donneLigne)
          self.view.pressed.connect(self.donneLigne)