summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2009-01-29 20:11:02 +0100
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2009-02-27 18:04:36 +0100
commit1c2f0f64c154f7d6c0e3d455010b85d78391002e (patch)
tree5829977cc5922453d40a4b1d9b033aeff5eae446 /src/plugins/projectexplorer/applicationlauncher.h
parentdf8ffb09fdd29cbb7ae952e5016a533cde145365 (diff)
downloadqt-creator-1c2f0f64c154f7d6c0e3d455010b85d78391002e.tar.gz
move abstractprocess and consoleprocess to libs/utils/
will use it also in the debugger, and pulling it in from projectexplorer just seems wrong.
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index 3a71a811bc..6643da0136 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -37,10 +37,15 @@
#include <QtCore/QTextCodec>
#endif
+namespace Core {
+namespace Utils {
+class ConsoleProcess;
+}
+}
+
namespace ProjectExplorer {
namespace Internal {
-class ConsoleProcess;
class WinGuiProcess;
class ApplicationLauncher : public QObject
@@ -84,7 +89,7 @@ private slots:
private:
QProcess *m_guiProcess;
- ConsoleProcess *m_consoleProcess;
+ Core::Utils::ConsoleProcess *m_consoleProcess;
Mode m_currentMode;
#ifdef Q_OS_WIN