From 7e90c53356a3a138ea8b16413a4f0b954449e201 Mon Sep 17 00:00:00 2001 From: Silas Dohm <silas.dohm@stud.hs-bochum.de> Date: Wed, 17 Aug 2022 22:04:15 +0200 Subject: [PATCH] removed () --- cell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cell.cpp b/cell.cpp index fb16708..f73dfc1 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 -- GitLab