1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModuleBase_IntSpinBox.cxx
4 // Author: Natalia ERMOLAEVA
6 #include "ModuleBase_IntSpinBox.h"
10 ModuleBase_IntSpinBox::ModuleBase_IntSpinBox(QWidget* theParent)
15 void ModuleBase_IntSpinBox::keyPressEvent(QKeyEvent *theEvent)
17 switch (theEvent->key()) {
19 case Qt::Key_Return: {
20 // do not react to the Enter key, the property panel processes it
27 QSpinBox::keyPressEvent(theEvent);