mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
rbutil: Modernize connect() to new pointer-to-member syntax.
Change-Id: I6bb86e34438eef10813f0d19e910599156a876e6
This commit is contained in:
parent
f29b81d521
commit
efacce58eb
13 changed files with 26 additions and 26 deletions
|
|
@ -34,7 +34,7 @@ bool BootloaderInstallMi4::install(void)
|
|||
emit logItem(tr("Downloading bootloader"), LOGINFO);
|
||||
LOG_INFO() << "installing bootloader";
|
||||
downloadBlStart(m_blurl);
|
||||
connect(this, SIGNAL(downloadDone()), this, SLOT(installStage2()));
|
||||
connect(this, &BootloaderInstallBase::downloadDone, this, &BootloaderInstallMi4::installStage2);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue