[libcalamares] Use stronger type, rather than comment

This commit is contained in:
Adriaan de Groot 2022-05-09 15:42:01 +02:00
parent a9df841770
commit 52e2c8c262

View File

@ -43,7 +43,7 @@ RequirementsChecker::run()
{
m_progressTimer = new QTimer( this );
connect( m_progressTimer, &QTimer::timeout, this, &RequirementsChecker::reportProgress );
m_progressTimer->start( 1200 ); // msec
m_progressTimer->start( std::chrono::milliseconds( 1200 ) );
for ( const auto& module : m_modules )
{