Fix compilation of IOS Simulator debugging on windows.

Change-Id: I57dc9297c89b193dbcb7dd9c96ff6d6118ce2191
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
David Schulz
2013-10-29 14:49:47 +01:00
committed by hjk
parent ce9c2efd1f
commit c8aeb78955
2 changed files with 9 additions and 1 deletions

View File

@@ -49,8 +49,12 @@
#include <QTcpServer> #include <QTcpServer>
#include <stdio.h> #include <stdio.h>
#include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#ifdef Q_OS_UNIX
#include <unistd.h>
#else
#include <io.h>
#endif
using namespace Debugger; using namespace Debugger;
using namespace ProjectExplorer; using namespace ProjectExplorer;

View File

@@ -258,6 +258,10 @@ MyProcess::MyProcess(QObject *parent) : QProcess(parent)
{ {
} }
MyProcess::~MyProcess()
{
}
int MyProcess::processOutputSocket() int MyProcess::processOutputSocket()
{ {
return 0; return 0;