Issue #25: Linux build

This commit is contained in:
Jakub Melka
2022-09-18 13:08:21 +02:00
parent 3b57f85d4d
commit dd466d5073
44 changed files with 208 additions and 184 deletions

View File

@ -35,7 +35,7 @@ void PDFProgress::start(size_t stepCount, ProgressStartupInfo startupInfo)
m_stepCount = stepCount;
m_percentage = 0;
emit progressStarted(qMove(startupInfo));
Q_EMIT progressStarted(qMove(startupInfo));
}
void PDFProgress::step()
@ -55,13 +55,13 @@ void PDFProgress::step()
if (emitSignal)
{
emit progressStep(newPercentage);
Q_EMIT progressStep(newPercentage);
}
}
void PDFProgress::finish()
{
emit progressFinished();
Q_EMIT progressFinished();
}
} // namespace pdf