diff --git a/cell.cpp b/cell.cpp index fb167082e28250b2bb6688b8d13c694811052ca9..f73dfc1a24d953654ffe14b427000e2ba625dbdb 100644 --- a/cell.cpp +++ b/cell.cpp @@ -48,7 +48,7 @@ void Cell::collapse(int x) collapsed = true; m_stackedWidget->setCurrentIndex(1); m_number->setText(QString::number(x + 1)); - emit(update(x)); + emit update(x); } void Cell::removeOption(int x) { @@ -78,5 +78,5 @@ void Cell::un(void) { collapsed = false; m_stackedWidget->setCurrentIndex(0); - emit(undo(m_number->text().toInt() - 1)); + emit undo(m_number->text().toInt() - 1); } \ No newline at end of file