Replace PBD::Signals (2/2)

This commit is contained in:
Robin Gareus 2024-10-18 18:03:28 +02:00
parent 2d7cce44f1
commit 2339b4dfdc
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
49 changed files with 76 additions and 76 deletions

View file

@ -86,9 +86,9 @@ public:
/** signal emitted when mootcher reports progress updates during download.
* The parameters are current and total numbers of bytes downloaded.
*/
PBD::Signal2<void, double, double> Progress;
PBD::Signal<void(double, double)> Progress;
/** signal emitted when the mootcher has finished downloading. */
PBD::Signal0<void> Finished;
PBD::Signal<void()> Finished;
private: