wxqt: correct formatting and casting, no functional change

This commit is contained in:
Sean D'Epagnier
2016-09-12 12:24:52 -04:00
committed by Vadim Zeitlin
parent 42144b93b7
commit 169d61edb7
20 changed files with 38 additions and 36 deletions

View File

@@ -301,7 +301,7 @@ bool wxListCtrl::GetItem(wxListItem& info) const
bool wxListCtrl::SetItem(wxListItem& info)
{
const long id = info.GetId();
if(id < 0)
if ( id < 0 )
return false;
QTreeWidgetItem *qitem = QtGetItem(id);
if ( qitem != NULL )