forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
fe54beb840
commit
2950477a01
1 changed files with 10 additions and 15 deletions
|
@ -265,22 +265,17 @@ QVariant TrafficMode::data(const QModelIndex & index, int role) const
|
|||
QVariant TrafficMode::headerData(int section, Qt::Orientation orientation,
|
||||
int role /* = Qt::DisplayRole */) const
|
||||
{
|
||||
if (orientation == Qt::Horizontal)
|
||||
{
|
||||
if (role == Qt::DisplayRole)
|
||||
{
|
||||
switch (section)
|
||||
{
|
||||
case 0: return "Segment id"; break;
|
||||
case 1: return "Status code"; break;
|
||||
case 2: return "Positive offset (Meters)"; break;
|
||||
case 3: return "Negative offset (Meters)"; break;
|
||||
}
|
||||
UNREACHABLE();
|
||||
}
|
||||
}
|
||||
if (orientation != Qt::Horizontal && role != Qt::DisplayRole)
|
||||
return QVariant();
|
||||
|
||||
return QVariant();
|
||||
switch (section)
|
||||
{
|
||||
case 0: return "Segment id"; break;
|
||||
case 1: return "Status code"; break;
|
||||
case 2: return "Positive offset (Meters)"; break;
|
||||
case 3: return "Negative offset (Meters)"; break;
|
||||
}
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
||||
void TrafficMode::OnItemSelected(QItemSelection const & selected, QItemSelection const &)
|
||||
|
|
Loading…
Add table
Reference in a new issue