mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-21 19:12:39 -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
|
|
@ -80,7 +80,7 @@ bool BootloaderInstallIpod::install(void)
|
|||
emit logItem(tr("Downloading bootloader file"), LOGINFO);
|
||||
|
||||
downloadBlStart(m_blurl);
|
||||
connect(this, SIGNAL(downloadDone()), this, SLOT(installStage2()));
|
||||
connect(this, &BootloaderInstallBase::downloadDone, this, &BootloaderInstallIpod::installStage2);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue