Convert emit(signal()) calls to emit signal()

This commit is contained in:
Luis Ángel San Martín
2021-09-30 21:57:55 +02:00
parent 8437bd38f4
commit e1ed292a91
8 changed files with 23 additions and 23 deletions

View File

@ -61,7 +61,7 @@ void GoToDialog::goTo()
{
unsigned int page = pageNumber->text().toInt();
if (page >= 1 && page <= v->top()) {
emit(goToPage(page - 1));
emit goToPage(page - 1);
close();
}
}