More Android fixes, add default android device.

Switch to new android assests scheme

Change-Id: I34bf52cbb085b76df66e40391160d189301aafd2
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
BogDan Vatra
2012-07-03 16:57:44 +03:00
committed by Tobias Hunger
parent 7c77331ea4
commit a16d355dce
16 changed files with 246 additions and 55 deletions

View File

@@ -55,7 +55,7 @@ class AVDModel: public QAbstractTableModel
{
Q_OBJECT
public:
void setAvdList(QVector<AndroidDevice> list);
void setAvdList(QVector<AndroidDeviceInfo> list);
QString avdName(const QModelIndex &index);
protected:
@@ -65,7 +65,7 @@ protected:
int columnCount(const QModelIndex &parent = QModelIndex()) const;
private:
QVector<AndroidDevice> m_list;
QVector<AndroidDeviceInfo> m_list;
};
class AndroidSettingsWidget : public QWidget