aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/idevicefactory.cpp')
-rw-r--r--src/plugins/projectexplorer/devicesupport/idevicefactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp b/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp
index 9f0cb7a55b..9281e8b739 100644
--- a/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp
+++ b/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp
@@ -86,7 +86,7 @@ IDevice::Ptr IDeviceFactory::construct() const
static QList<IDeviceFactory *> g_deviceFactories;
-IDeviceFactory *IDeviceFactory::find(Core::Id type)
+IDeviceFactory *IDeviceFactory::find(Utils::Id type)
{
return Utils::findOrDefault(g_deviceFactories,
[&type](IDeviceFactory *factory) {
@@ -94,7 +94,7 @@ IDeviceFactory *IDeviceFactory::find(Core::Id type)
});
}
-IDeviceFactory::IDeviceFactory(Core::Id deviceType)
+IDeviceFactory::IDeviceFactory(Utils::Id deviceType)
: m_deviceType(deviceType)
{
g_deviceFactories.append(this);