diff options
author | hjk <hjk@qt.io> | 2018-03-06 17:14:43 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2018-03-07 16:07:42 +0000 |
commit | 8b92da254e974ec39c92b3ec7b30e1b603d8f74b (patch) | |
tree | 56a3fcd16df1defec3a7d747f5da67c88c8f941f /src/plugins/ios/iosrunfactories.cpp | |
parent | 981846726b6824f420ed09012724f0d1a2caba9d (diff) | |
download | qt-creator-8b92da254e974ec39c92b3ec7b30e1b603d8f74b.tar.gz |
Rename IRunConfigurationFactory to RunConfigurationFactory
It's not an *I*nterface anymore
Also, remove the in-all-but-one case unused QObject parent and the
object name that was only there for debugging purposes. The class
type serves the same purpose in the debugger.
Change-Id: I0dafb01e6b4fd7c7df04a63aaa3ef3e4bd693f6f
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/ios/iosrunfactories.cpp')
-rw-r--r-- | src/plugins/ios/iosrunfactories.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/ios/iosrunfactories.cpp b/src/plugins/ios/iosrunfactories.cpp index 9a310d8b4d..1b73477dda 100644 --- a/src/plugins/ios/iosrunfactories.cpp +++ b/src/plugins/ios/iosrunfactories.cpp @@ -42,10 +42,8 @@ using namespace QmakeProjectManager; namespace Ios { namespace Internal { -IosRunConfigurationFactory::IosRunConfigurationFactory(QObject *parent) - : QmakeRunConfigurationFactory(parent) +IosRunConfigurationFactory::IosRunConfigurationFactory() { - setObjectName("IosRunConfigurationFactory"); registerRunConfiguration<IosRunConfiguration>(Constants::IOS_RC_ID_PREFIX); addSupportedTargetDeviceType(Constants::IOS_DEVICE_TYPE); addSupportedTargetDeviceType(Constants::IOS_SIMULATOR_TYPE); |