QNX: Fix QML debugging on remote QNX devices

Change-Id: I7e5be01328ab32db9218fbdefaede7044131d2b9
Reviewed-by: hjk <hjk121@nokiamail.com>
Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com>
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
Tobias Nätterlund
2013-11-05 14:29:05 +01:00
committed by Tobias Nätterlund
parent 56fc59ab5f
commit 49eb734973
3 changed files with 38 additions and 1 deletions

View File

@@ -34,12 +34,15 @@
#include "qnxabstractrunsupport.h"
#include <utils/outputformat.h>
namespace Debugger { class DebuggerEngine; }
namespace Qnx {
namespace Internal {
class QnxRunConfiguration;
class Slog2InfoRunner;
class QnxDebugSupport : public QnxAbstractRunSupport
{
@@ -60,6 +63,9 @@ private slots:
void handleRemoteOutput(const QByteArray &output);
void handleError(const QString &error);
void printMissingWarning();
void handleApplicationOutput(const QString &msg, Utils::OutputFormat outputFormat);
private:
void startExecution();
@@ -67,6 +73,8 @@ private:
void killInferiorProcess();
Slog2InfoRunner *m_slog2Info;
Debugger::DebuggerEngine *m_engine;
int m_pdebugPort;
int m_qmlPort;