1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(build): format code

This commit is contained in:
antony-jr 2019-07-13 20:13:53 +05:30
parent 5eea8ba27f
commit f4d9cff7d4
No known key found for this signature in database
GPG Key ID: 13089CB6F3D41A27
3 changed files with 11 additions and 13 deletions

View File

@ -27,13 +27,13 @@
#include <AppImageUpdaterBridge>
#include <AppImageUpdaterDialog>
#endif
#include <QDebug>
#include <QJsonDocument>
#include <QJsonObject>
#include <QRegularExpression>
#include <QNetworkReply>
#include <QObject>
#include <QRegularExpression>
#include <QTimer>
#include <QDebug>
#include <cassert>
#ifndef APPIMAGE_UPDATER_BRIDGE_ENABLED
@ -96,7 +96,7 @@ void UpdateCheck::initUpdate()
#endif
#ifndef APPIMAGE_UPDATER_BRIDGE_ENABLED
void UpdateCheck::handleResponse(QNetworkReply *reply)
void UpdateCheck::handleResponse(QNetworkReply* reply)
{
assert(reply != nullptr);
if (reply == nullptr) {
@ -129,8 +129,7 @@ void UpdateCheck::handleResponse(QNetworkReply *reply)
qInfo() << "Update available to version" << latestVersion;
QUrl link{mainMap["html_url"].toString()};
emit updateAvailable(latestVersion, link);
}
else {
} else {
qInfo() << "qTox is up to date";
emit upToDate();
}

View File

@ -16,8 +16,8 @@
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QObject>
#include <QNetworkAccessManager>
#include <QObject>
#include <QTimer>
#ifdef APPIMAGE_UPDATER_BRIDGE_ENABLED

View File

@ -20,17 +20,17 @@
#include "aboutform.h"
#include "ui_aboutsettings.h"
#include "src/widget/tool/recursivesignalblocker.h"
#include "src/net/updatecheck.h"
#include "src/widget/style.h"
#include "src/widget/translator.h"
#include "src/persistence/profile.h"
#include "src/persistence/settings.h"
#include "src/widget/style.h"
#include "src/widget/tool/recursivesignalblocker.h"
#include "src/widget/translator.h"
#include <tox/tox.h>
#include <QDebug>
#include <QDesktopServices>
#include <QDesktopServices>
#include <QPushButton>
#include <QTimer>
@ -173,9 +173,8 @@ void AboutForm::replaceVersions()
void AboutForm::onUpdateAvailable(QString latestVersion, QUrl link)
{
QObject::disconnect(linkConnection);
linkConnection = connect(bodyUI->updateAvailableButton, &QPushButton::clicked, [link](){
QDesktopServices::openUrl(link);
});
linkConnection = connect(bodyUI->updateAvailableButton, &QPushButton::clicked,
[link]() { QDesktopServices::openUrl(link); });
bodyUI->updateStack->setCurrentIndex(static_cast<int>(updateIndex::available));
}
#else