Maintenance: DefaultAircraftLocator
type correctness during comparison
This commit is contained in:
parent
3c694ddb5b
commit
4ce8be87a0
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ int WeatherScenariosModel::rowCount(const QModelIndex&) const
|
||||||
QVariant WeatherScenariosModel::data(const QModelIndex &index, int role) const
|
QVariant WeatherScenariosModel::data(const QModelIndex &index, int role) const
|
||||||
{
|
{
|
||||||
const int row = index.row();
|
const int row = index.row();
|
||||||
if ((row < 0) || (row >= m_scenarios.size())) {
|
if ((row < 0) || (static_cast<std::vector<WeatherScenariosModel::WeatherScenario>::size_type>(row) >= m_scenarios.size())) {
|
||||||
return QVariant();
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue