Skip to content
Snippets Groups Projects
Commit 7e90c533 authored by Silas Dohm's avatar Silas Dohm
Browse files

removed ()

parent f79c5e0e
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment