forked from qt-creator/qt-creator
Fix qbs build
Change-Id: Ib484836705c30cb90ee52e87867e2bfde6358d64 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
committed by
Joerg Bornemann
parent
1d90cc2ecd
commit
7204863c13
@@ -41,6 +41,8 @@ QtcPlugin {
|
||||
"androiddeploystepwidget.cpp",
|
||||
"androiddeploystepwidget.h",
|
||||
"androiddeploystepwidget.ui",
|
||||
"androiddevicefactory.cpp",
|
||||
"androiddevicefactory.h",
|
||||
"androidglobal.h",
|
||||
"androidmanager.h",
|
||||
"androidmanager.cpp",
|
||||
|
@@ -60,16 +60,19 @@ bool AndroidDeviceFactory::canCreate() const
|
||||
|
||||
ProjectExplorer::IDevice::Ptr AndroidDeviceFactory::create(Core::Id id) const
|
||||
{
|
||||
Q_UNUSED(id);
|
||||
return ProjectExplorer::IDevice::Ptr();
|
||||
}
|
||||
|
||||
bool AndroidDeviceFactory::canRestore(const QVariantMap &map) const
|
||||
{
|
||||
Q_UNUSED(map);
|
||||
return false;
|
||||
}
|
||||
|
||||
ProjectExplorer::IDevice::Ptr AndroidDeviceFactory::restore(const QVariantMap &map) const
|
||||
{
|
||||
Q_UNUSED(map);
|
||||
return ProjectExplorer::IDevice::Ptr();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user