aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/iosplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2024-02-02 18:32:12 +0100
committerhjk <[email protected]>2024-02-05 07:06:55 +0000
commit435b35ccfea00c6ce302545d2cc9740210232406 (patch)
treee53e34fe5996a63b976387d5d277c1e19be97efe /src/plugins/ios/iosplugin.cpp
parent508189339deb61c245333fa9bbd6532b079fb9b3 (diff)
Ios: Use setup functions for a few factories
Change-Id: Ide05c2ca859454c1745e5c243af6a3d05131194c Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosplugin.cpp')
-rw-r--r--src/plugins/ios/iosplugin.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/ios/iosplugin.cpp b/src/plugins/ios/iosplugin.cpp
index 071870684ce..c4256f0deb9 100644
--- a/src/plugins/ios/iosplugin.cpp
+++ b/src/plugins/ios/iosplugin.cpp
@@ -23,7 +23,6 @@
#include <projectexplorer/runconfiguration.h>
using namespace ProjectExplorer;
-using namespace QtSupport;
namespace Ios::Internal {
@@ -45,10 +44,6 @@ public:
class IosPluginPrivate
{
public:
- IosRunConfigurationFactory runConfigurationFactory;
- IosSettingsPage settingsPage;
- IosQtVersionFactory qtVersionFactory;
- IosDeviceFactory deviceFactory;
IosSimulatorFactory simulatorFactory;
IosBuildStepFactory buildStepFactory;
IosDeployStepFactory deployStepFactory;
@@ -75,9 +70,14 @@ class IosPlugin final : public ExtensionSystem::IPlugin
setupIosToolchain();
setupIosBuildConfiguration();
+ setupIosQtVersion();
+ setupIosDevice();
IosConfigurations::initialize();
+ setupIosRunConfiguration();
+ setupIosSettingsPage();
+
d = new IosPluginPrivate;
}