summaryrefslogtreecommitdiff
path: root/launcher/launch/steps/CheckJava.h
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/launch/steps/CheckJava.h')
-rw-r--r--launcher/launch/steps/CheckJava.h41
1 files changed, 21 insertions, 20 deletions
diff --git a/launcher/launch/steps/CheckJava.h b/launcher/launch/steps/CheckJava.h
index d7d3cdd086..8de2d7da5a 100644
--- a/launcher/launch/steps/CheckJava.h
+++ b/launcher/launch/steps/CheckJava.h
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
+ *
* This file incorporates work covered by the following copyright and
* permission notice:
*
@@ -42,27 +42,28 @@
#include <LoggedProcess.h>
#include <java/JavaChecker.h>
-class CheckJava: public LaunchStep
+class CheckJava : public LaunchStep
{
- Q_OBJECT
-public:
- explicit CheckJava(LaunchTask *parent) :LaunchStep(parent){};
- virtual ~CheckJava() {};
+ Q_OBJECT
+ public:
+ explicit CheckJava(LaunchTask* parent) : LaunchStep(parent) {};
+ virtual ~CheckJava() {};
- virtual void executeTask();
- virtual bool canAbort() const
- {
- return false;
- }
-private slots:
- void checkJavaFinished(JavaCheckResult result);
+ virtual void executeTask();
+ virtual bool canAbort() const
+ {
+ return false;
+ }
+ private slots:
+ void checkJavaFinished(JavaCheckResult result);
-private:
- void printJavaInfo(const QString & version, const QString & architecture, const QString & vendor);
- void printSystemInfo(bool javaIsKnown, bool javaIs64bit);
+ private:
+ void printJavaInfo(const QString& version, const QString& architecture,
+ const QString& vendor);
+ void printSystemInfo(bool javaIsKnown, bool javaIs64bit);
-private:
- QString m_javaPath;
- qlonglong m_javaUnixTime;
- JavaCheckerPtr m_JavaChecker;
+ private:
+ QString m_javaPath;
+ qlonglong m_javaUnixTime;
+ JavaCheckerPtr m_JavaChecker;
};