Skip to content

Commit

Permalink
Fix incorrect type
Browse files Browse the repository at this point in the history
  • Loading branch information
Admiral-Fish committed Jun 3, 2024
1 parent c46addc commit 12ce445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Form/Util/Researcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Researcher::Researcher(QWidget *parent) : QWidget(parent), ui(new Ui::Researcher
QStringList operands = { "*", "/", "%", "+", "-", "<<", ">>", "<", "<=", ">", ">=", "&", "^", "|" };
for (int i = 1; i <= 10; i++)
{
auto *box = ui->groupBoxCustoms->findChild<ComboBox *>(QString("comboBoxOperator%1").arg(i));
auto *box = ui->groupBoxCustoms->findChild<QComboBox *>(QString("comboBoxOperator%1").arg(i));
box->addItems(operands);

auto *text = ui->groupBoxCustoms->findChild<TextBox *>(QString("textBoxRValue%1").arg(i));
Expand Down

0 comments on commit 12ce445

Please sign in to comment.