summaryrefslogtreecommitdiffstats
path: root/src/jomlib/commandexecutor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jomlib/commandexecutor.h')
-rw-r--r--src/jomlib/commandexecutor.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/jomlib/commandexecutor.h b/src/jomlib/commandexecutor.h
index 61be592..22bce72 100644
--- a/src/jomlib/commandexecutor.h
+++ b/src/jomlib/commandexecutor.h
@@ -1,7 +1,7 @@
/****************************************************************************
**
- ** Copyright (C) 2008-2014 Digia Plc and/or its subsidiary(-ies).
- ** Contact: http://www.qt-project.org/legal
+ ** Copyright (C) 2015 The Qt Company Ltd.
+ ** Contact: http://www.qt.io/licensing/
**
** This file is part of the jom project on Trolltech Labs.
**
@@ -41,8 +41,6 @@ public:
void start(DescriptionBlock* target);
DescriptionBlock* target() { return m_pTarget; }
- void block();
- void unblock();
bool isActive() const { return m_active; }
void waitForFinished();
void cleanupTempFiles();
@@ -55,7 +53,6 @@ public slots:
signals:
void environmentChanged(const ProcessEnvironment &environment);
void finished(CommandExecutor* process, bool abortMakeProcess);
- void subJomStarted();
private slots:
void onProcessError(Process::ProcessError error);
@@ -76,8 +73,6 @@ private:
static QString m_tempPath;
Process m_process;
DescriptionBlock* m_pTarget;
- bool m_blocked;
- bool m_processFinishedWhileBlocked;
struct TempFile
{