Minor style and formatting clean up of the new code

Fix typos in comments and indent them.

Wrap over-long lines.

Remove useless top-level const.
This commit is contained in:
Vadim Zeitlin
2018-12-07 04:00:52 +01:00
parent 9eea5cae23
commit 090491cdbc
4 changed files with 80 additions and 79 deletions

View File

@@ -3447,7 +3447,7 @@ int wxDataViewMainWindow::GetLineAt( unsigned int y ) const
if (!node)
{
// not really correct...
return row + ((y - yy) / m_lineHeight);
return row + ((y-yy) / m_lineHeight);
}
item = node->GetItem();
}