More fixes for Code/Editor
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -472,7 +472,7 @@ void AssetCatalogModel::LoadDatabase()
|
||||
{
|
||||
m_fileCacheCurrentIndex = 0;
|
||||
Q_EMIT UpdateProgress(0);
|
||||
Q_EMIT SetTotalProgress(m_fileCache.size());
|
||||
Q_EMIT SetTotalProgress(static_cast<int>(m_fileCache.size()));
|
||||
};
|
||||
|
||||
EBUS_EVENT(AZ::Data::AssetCatalogRequestBus, EnumerateAssets, startCB, enumerateCB, endCB);
|
||||
|
||||
+1
-1
@@ -262,7 +262,7 @@ QModelIndex ComponentDataModel::parent([[maybe_unused]] const QModelIndex &child
|
||||
|
||||
int ComponentDataModel::rowCount([[maybe_unused]] const QModelIndex &parent /*= QModelIndex()*/) const
|
||||
{
|
||||
return m_componentList.size();
|
||||
return static_cast<int>(m_componentList.size());
|
||||
}
|
||||
|
||||
int ComponentDataModel::columnCount([[maybe_unused]] const QModelIndex &parent /*= QModelIndex()*/) const
|
||||
|
||||
Reference in New Issue
Block a user