Good afternoon and evening. I have a function that takes arguments, such as url and title, of type QUrl and QString, respectively. How to connect the signal and call the function if the program (!) Was started-restarted? My guess was this:
connect(&app, SIGNAL(appStarting(QUrl,QString)), this, SLOT(getTitle(QUrl,QString)));
Is it worth it?