Fix qbs build

Change-Id: Ib484836705c30cb90ee52e87867e2bfde6358d64
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
Orgad Shaneh
2012-06-23 23:22:33 +03:00
committed by Joerg Bornemann
parent 1d90cc2ecd
commit 7204863c13
2 changed files with 5 additions and 0 deletions

View File

@@ -41,6 +41,8 @@ QtcPlugin {
"androiddeploystepwidget.cpp",
"androiddeploystepwidget.h",
"androiddeploystepwidget.ui",
"androiddevicefactory.cpp",
"androiddevicefactory.h",
"androidglobal.h",
"androidmanager.h",
"androidmanager.cpp",

View File

@@ -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();
}