mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-26 17:58:19 +03:00
Use qt5 syntax for a few remaining SLOT()
This commit is contained in:
parent
e33df4dd8c
commit
800f966df9
4 changed files with 8 additions and 4 deletions
|
@ -660,7 +660,7 @@ void Application::shutdownCleanup(QSessionManager &manager)
|
||||||
// According to the qt docs we shouldn't call quit() inside a slot.
|
// According to the qt docs we shouldn't call quit() inside a slot.
|
||||||
// aboutToQuit() is never emitted if the user hits "Cancel" in
|
// aboutToQuit() is never emitted if the user hits "Cancel" in
|
||||||
// the above dialog.
|
// the above dialog.
|
||||||
QTimer::singleShot(0, qApp, SLOT(quit()));
|
QTimer::singleShot(0, qApp, &QCoreApplication::quit);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -329,7 +329,7 @@ void showSplashScreen()
|
||||||
painter.drawText(224 - painter.fontMetrics().width(version), 270, version);
|
painter.drawText(224 - painter.fontMetrics().width(version), 270, version);
|
||||||
QSplashScreen *splash = new QSplashScreen(splash_img);
|
QSplashScreen *splash = new QSplashScreen(splash_img);
|
||||||
splash->show();
|
splash->show();
|
||||||
QTimer::singleShot(1500, splash, SLOT(deleteLater()));
|
QTimer::singleShot(1500, splash, &QObject::deleteLater);
|
||||||
qApp->processEvents();
|
qApp->processEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,11 @@ void ReverseResolution::resolve(const QString &ip)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Actually resolve the ip
|
// Actually resolve the ip
|
||||||
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
||||||
|
m_lookups.insert(QHostInfo::lookupHost(ip, this, &ReverseResolution::hostResolved), ip);
|
||||||
|
#else
|
||||||
m_lookups.insert(QHostInfo::lookupHost(ip, this, SLOT(hostResolved(QHostInfo))), ip);
|
m_lookups.insert(QHostInfo::lookupHost(ip, this, SLOT(hostResolved(QHostInfo))), ip);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -375,7 +375,7 @@ MainWindow::MainWindow(QWidget *parent)
|
||||||
on_actionWarningMessages_triggered(m_ui->actionWarningMessages->isChecked());
|
on_actionWarningMessages_triggered(m_ui->actionWarningMessages->isChecked());
|
||||||
on_actionCriticalMessages_triggered(m_ui->actionCriticalMessages->isChecked());
|
on_actionCriticalMessages_triggered(m_ui->actionCriticalMessages->isChecked());
|
||||||
if (m_ui->actionSearchWidget->isChecked())
|
if (m_ui->actionSearchWidget->isChecked())
|
||||||
QTimer::singleShot(0, this, SLOT(on_actionSearchWidget_triggered()));
|
QTimer::singleShot(0, this, &MainWindow::on_actionSearchWidget_triggered);
|
||||||
|
|
||||||
// Auto shutdown actions
|
// Auto shutdown actions
|
||||||
QActionGroup *autoShutdownGroup = new QActionGroup(this);
|
QActionGroup *autoShutdownGroup = new QActionGroup(this);
|
||||||
|
@ -1213,7 +1213,7 @@ bool MainWindow::event(QEvent *e)
|
||||||
if (!hasModalWindow) {
|
if (!hasModalWindow) {
|
||||||
qDebug("Minimize to Tray enabled, hiding!");
|
qDebug("Minimize to Tray enabled, hiding!");
|
||||||
e->ignore();
|
e->ignore();
|
||||||
QTimer::singleShot(0, this, SLOT(hide()));
|
QTimer::singleShot(0, this, &QWidget::hide);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue