Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-05-27 21:23:36 +0300
committerCamila <smayres@gmail.com>2020-06-03 17:02:43 +0300
commit965909f7fa60ee9b8a0e06112c79b0b105ccc73e (patch)
treef11f58d45be44a1ccc0ba1cb886e57cbdb07aecc /src/gui/updater
parent12279089f5770bbe09aa996306809d5dcc548761 (diff)
Add missing auto opportunities
Somehow forgot to run it on the updater code Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/updater')
-rw-r--r--src/gui/updater/ocupdater.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/updater/ocupdater.cpp b/src/gui/updater/ocupdater.cpp
index 18ef64e20..4d3a0d3de 100644
--- a/src/gui/updater/ocupdater.cpp
+++ b/src/gui/updater/ocupdater.cpp
@@ -43,7 +43,7 @@ UpdaterScheduler::UpdaterScheduler(QObject *parent)
this, &UpdaterScheduler::slotTimerFired);
// Note: the sparkle-updater is not an OCUpdater
- if (OCUpdater *updater = qobject_cast<OCUpdater *>(Updater::instance())) {
+ if (auto *updater = qobject_cast<OCUpdater *>(Updater::instance())) {
connect(updater, &OCUpdater::newUpdateAvailable,
this, &UpdaterScheduler::updaterAnnouncement);
connect(updater, &OCUpdater::requestRestart, this, &UpdaterScheduler::requestRestart);
@@ -219,7 +219,7 @@ bool OCUpdater::updateSucceeded() const
void OCUpdater::slotVersionInfoArrived()
{
_timeoutWatchdog->stop();
- QNetworkReply *reply = qobject_cast<QNetworkReply *>(sender());
+ auto *reply = qobject_cast<QNetworkReply *>(sender());
reply->deleteLater();
if (reply->error() != QNetworkReply::NoError) {
qCWarning(lcUpdater) << "Failed to reach version check url: " << reply->errorString();
@@ -254,7 +254,7 @@ NSISUpdater::NSISUpdater(const QUrl &url)
void NSISUpdater::slotWriteFile()
{
- QNetworkReply *reply = qobject_cast<QNetworkReply *>(sender());
+ auto *reply = qobject_cast<QNetworkReply *>(sender());
if (_file->isOpen()) {
_file->write(reply->readAll());
}
@@ -262,7 +262,7 @@ void NSISUpdater::slotWriteFile()
void NSISUpdater::slotDownloadFinished()
{
- QNetworkReply *reply = qobject_cast<QNetworkReply *>(sender());
+ auto *reply = qobject_cast<QNetworkReply *>(sender());
reply->deleteLater();
if (reply->error() != QNetworkReply::NoError) {
setDownloadState(DownloadFailed);
@@ -319,7 +319,7 @@ void NSISUpdater::versionInfoArrived(const UpdateInfo &info)
void NSISUpdater::showDialog(const UpdateInfo &info)
{
// if the version tag is set, there is a newer version.
- QDialog *msgBox = new QDialog;
+ auto *msgBox = new QDialog;
msgBox->setAttribute(Qt::WA_DeleteOnClose);
QIcon infoIcon = msgBox->style()->standardIcon(QStyle::SP_MessageBoxInformation, nullptr, nullptr);
@@ -327,16 +327,16 @@ void NSISUpdater::showDialog(const UpdateInfo &info)
msgBox->setWindowIcon(infoIcon);
- QVBoxLayout *layout = new QVBoxLayout(msgBox);
- QHBoxLayout *hlayout = new QHBoxLayout;
+ auto *layout = new QVBoxLayout(msgBox);
+ auto *hlayout = new QHBoxLayout;
layout->addLayout(hlayout);
msgBox->setWindowTitle(tr("New Version Available"));
- QLabel *ico = new QLabel;
+ auto *ico = new QLabel;
ico->setFixedSize(iconSize, iconSize);
ico->setPixmap(infoIcon.pixmap(iconSize));
- QLabel *lbl = new QLabel;
+ auto *lbl = new QLabel;
QString txt = tr("<p>A new version of the %1 Client is available.</p>"
"<p><b>%2</b> is available for download. The installed version is %3.</p>")
.arg(Utility::escape(Theme::instance()->appNameGUI()),
@@ -349,7 +349,7 @@ void NSISUpdater::showDialog(const UpdateInfo &info)
hlayout->addWidget(ico);
hlayout->addWidget(lbl);
- QDialogButtonBox *bb = new QDialogButtonBox;
+ auto *bb = new QDialogButtonBox;
bb->setWindowFlags(bb->windowFlags() & ~Qt::WindowContextHelpButtonHint);
QPushButton *skip = bb->addButton(tr("Skip this version"), QDialogButtonBox::ResetRole);
QPushButton *reject = bb->addButton(tr("Skip this time"), QDialogButtonBox::AcceptRole);