Salome HOME
updated copyright message
[modules/shaper.git] / src / ModuleBase / ModuleBase_IntSpinBox.cpp
old mode 100755 (executable)
new mode 100644 (file)
index 197bfc2..eb7b69f
@@ -1,34 +1,31 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:      ModuleBase_IntSpinBox.cxx
-// Author:    Natalia ERMOLAEVA
+// Copyright (C) 2014-2023  CEA, EDF
+//
+// 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
+//
+
 #include "ModuleBase_IntSpinBox.h"
 
 #include <QKeyEvent>
 
 ModuleBase_IntSpinBox::ModuleBase_IntSpinBox(QWidget* theParent)
-: QSpinBox(theParent)//,
-  //myIsModified(false)
-{
-  //connect(this, SIGNAL(valueChanged(const QString&)), this, SLOT(onValueChanged(const QString&)));
-}
-
-/*void ModuleBase_IntSpinBox::onValueChanged(const QString& theValue)
+: QSpinBox(theParent)
 {
-  myIsModified = true;
 }
 
-bool ModuleBase_IntSpinBox::isModified() const
-{
-  return myIsModified;
-}
-
-void ModuleBase_IntSpinBox::clearModified()
-{
-  myIsModified = false;
-}*/
-
 void ModuleBase_IntSpinBox::keyPressEvent(QKeyEvent *theEvent)
 {
   switch (theEvent->key()) {