mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Issue #25: Linux build
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user