diff options
Diffstat (limited to 'src/plugins/ios/iosdebugsupport.h')
-rw-r--r-- | src/plugins/ios/iosdebugsupport.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/ios/iosdebugsupport.h b/src/plugins/ios/iosdebugsupport.h index e5f12c7699..1d9560cd46 100644 --- a/src/plugins/ios/iosdebugsupport.h +++ b/src/plugins/ios/iosdebugsupport.h @@ -23,8 +23,7 @@ ** ****************************************************************************/ -#ifndef IOSDEBUGSUPPORT_H -#define IOSDEBUGSUPPORT_H +#pragma once #include "iosrunconfiguration.h" #include <QProcess> @@ -51,8 +50,8 @@ public: ~IosDebugSupport(); private: - void handleServerPorts(int gdbServerFd, int qmlPort); - void handleGotInferiorPid(qint64, int qmlPort); + void handleServerPorts(Utils::Port gdbServerPort, Utils::Port qmlPort); + void handleGotInferiorPid(qint64, Utils::Port qmlPort); void handleRemoteProcessFinished(bool cleanEnd); void handleRemoteOutput(const QString &output); @@ -65,5 +64,3 @@ private: } // namespace Internal } // namespace Ios - -#endif // IOSDEBUGSUPPORT_H |