mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-25 11:25:48 -05:00
[libcalamares] Use stronger type, rather than comment
This commit is contained in:
parent
a9df841770
commit
52e2c8c262
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue