File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
#include " numericinput.h"
2
- #include " ui_extendednumericinput .h"
2
+ #include " ui_numericinput .h"
3
3
4
4
#include < QJsonObject>
5
5
#include < QDebug>
8
8
9
9
NumericInput::NumericInput (QWidget *parent) :
10
10
QFrame(parent),
11
- ui(new Ui::ExtendedNumericInput ) {
11
+ ui(new Ui::NumericInput ) {
12
12
ui->setupUi (this );
13
13
14
14
setTypes (Exact | Range | Binomial);
Original file line number Diff line number Diff line change 6
6
#include < QJsonValue>
7
7
8
8
namespace Ui {
9
- class ExtendedNumericInput ;
9
+ class NumericInput ;
10
10
}
11
11
12
12
class NumericInput : public QFrame
@@ -63,7 +63,7 @@ private slots:
63
63
void onMinMaxEdited ();
64
64
65
65
private:
66
- Ui::ExtendedNumericInput *ui;
66
+ Ui::NumericInput *ui;
67
67
QMenu typeMenu;
68
68
Types types;
69
69
Type currentType;
You can’t perform that action at this time.
0 commit comments