mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-20 10:32:42 -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
|
|
@ -122,7 +122,7 @@ bool BootloaderInstallHex::install(void)
|
|||
|
||||
// download firmware from server
|
||||
emit logItem(tr("Downloading bootloader file"), LOGINFO);
|
||||
connect(this, SIGNAL(downloadDone()), this, SLOT(installStage2()));
|
||||
connect(this, &BootloaderInstallBase::downloadDone, this, &BootloaderInstallHex::installStage2);
|
||||
|
||||
downloadBlStart(m_blurl);
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue