diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2016-07-01 12:39:49 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2016-07-05 12:50:24 +0000 |
commit | dfe8bb0db7fe46c9301a497abc4528991aff3076 (patch) | |
tree | 534b0b8865c9f0a4e7ccd8eb6b2aa537dfd4abfd /src/plugins/winrt/winrtdebugsupport.h | |
parent | 35c17ac73aa90643742189d66c0f7874083ab065 (diff) | |
download | qt-creator-dfe8bb0db7fe46c9301a497abc4528991aff3076.tar.gz |
WinRT: Use Qt5-style connects
The heavy lifting was done by clazy.
Change-Id: Iaa91215dd9f3adb44f39839901de56c07f0c8702
Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/winrt/winrtdebugsupport.h')
-rw-r--r-- | src/plugins/winrt/winrtdebugsupport.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/winrt/winrtdebugsupport.h b/src/plugins/winrt/winrtdebugsupport.h index 82705576fa..32869bba3b 100644 --- a/src/plugins/winrt/winrtdebugsupport.h +++ b/src/plugins/winrt/winrtdebugsupport.h @@ -47,14 +47,13 @@ public: private: WinRtDebugSupport(ProjectExplorer::RunControl *runControl, WinRtRunnerHelper *runner); + void finish(); + static bool useQmlDebugging(WinRtRunConfiguration *runConfig); static bool getFreePort(Utils::Port &qmlDebuggerPort, QString *errorMessage); ProjectExplorer::RunControl *m_debugRunControl; WinRtRunnerHelper *m_runner; - -private slots: - void finish(); }; } // namespace Internal |