aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp')
-rw-r--r--src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp b/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp
index 55915d3289..f2e9688df1 100644
--- a/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp
+++ b/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp
@@ -29,8 +29,6 @@
#include "idevice.h"
#include "idevicefactory.h"
-#include <coreplugin/id.h>
-
#include <QPushButton>
namespace ProjectExplorer {
@@ -73,12 +71,12 @@ void DeviceFactorySelectionDialog::handleItemDoubleClicked()
accept();
}
-Core::Id DeviceFactorySelectionDialog::selectedId() const
+Utils::Id DeviceFactorySelectionDialog::selectedId() const
{
QList<QListWidgetItem *> selected = ui->listWidget->selectedItems();
if (selected.isEmpty())
- return Core::Id();
- return selected.at(0)->data(Qt::UserRole).value<Core::Id>();
+ return Utils::Id();
+ return selected.at(0)->data(Qt::UserRole).value<Utils::Id>();
}
} // namespace Internal