ExpressionParser: Add XOR operator.

This commit is contained in:
Jordan Woyak
2019-10-20 09:51:19 -05:00
parent 6282b0d83e
commit 1fe44238b1
3 changed files with 15 additions and 3 deletions

View File

@ -234,6 +234,7 @@ void IOWindow::CreateMainLayout()
m_operators_combo->addItem(tr("> Greater-than"));
m_operators_combo->addItem(tr("< Less-than"));
m_operators_combo->addItem(tr("& And"));
m_operators_combo->addItem(tr("^ Xor"));
}
m_operators_combo->addItem(tr("| Or"));
if (m_type == Type::Input)