Skip to content

Commit

Permalink
[Bugfix] remame ExtendedNumericInput to NumericInput
Browse files Browse the repository at this point in the history
  • Loading branch information
IoeCmcomc committed Apr 27, 2020
1 parent 5551952 commit 203991d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions numericinput.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "numericinput.h"
#include "ui_extendednumericinput.h"
#include "ui_numericinput.h"

#include <QJsonObject>
#include <QDebug>
Expand All @@ -8,7 +8,7 @@

NumericInput::NumericInput(QWidget *parent) :
QFrame(parent),
ui(new Ui::ExtendedNumericInput) {
ui(new Ui::NumericInput) {
ui->setupUi(this);

setTypes(Exact | Range | Binomial);
Expand Down
4 changes: 2 additions & 2 deletions numericinput.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <QJsonValue>

namespace Ui {
class ExtendedNumericInput;
class NumericInput;
}

class NumericInput : public QFrame
Expand Down Expand Up @@ -63,7 +63,7 @@ private slots:
void onMinMaxEdited();

private:
Ui::ExtendedNumericInput *ui;
Ui::NumericInput *ui;
QMenu typeMenu;
Types types;
Type currentType;
Expand Down

0 comments on commit 203991d

Please sign in to comment.