From 3708f5ec96841d9b80fd3fab7a36bd48d343c526 Mon Sep 17 00:00:00 2001 From: Leonardo Murillo Date: Wed, 10 Jun 2015 14:15:26 -0600 Subject: [PATCH] Code Review changes --- libraries/auto-update/src/AutoUpdate.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/auto-update/src/AutoUpdate.h b/libraries/auto-update/src/AutoUpdate.h index be8e479f63..71b55095ee 100644 --- a/libraries/auto-update/src/AutoUpdate.h +++ b/libraries/auto-update/src/AutoUpdate.h @@ -41,7 +41,12 @@ public: void checkForUpdate(); const QMap> &getBuildData() { return _builds; } void performAutoUpdate(int version); - + +signals: + void latestVersionDataParsed(); + void newVersionIsAvailable(); + void newVersionIsDownloaded(); + private: QMap> _builds; QString _operatingSystem; @@ -54,11 +59,6 @@ private: const QString& releaseNotes, const QString& pullRequestNumber); -signals: - void latestVersionDataParsed(); - void newVersionIsAvailable(); - void newVersionIsDownloaded(); - private slots: void parseLatestVersionData(); void checkVersionAndNotify();