no real changes, just remove unnecessary semicolons (part of #10687)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60053 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
a1e92028b3
commit
dcc3f1a5e3
@ -893,7 +893,7 @@ bool wxListCtrl::SetItem(wxListItem& info)
|
||||
data = new wxListItemInternalData();
|
||||
item.lParam = (LPARAM) data;
|
||||
item.mask |= LVIF_PARAM;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
// user data
|
||||
@ -910,8 +910,8 @@ bool wxListCtrl::SetItem(wxListItem& info)
|
||||
data->attr->AssignFrom(attrNew);
|
||||
else
|
||||
data->attr = new wxListItemAttr(attrNew);
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// we could be changing only the attribute in which case we don't need to
|
||||
@ -1626,7 +1626,7 @@ long wxListCtrl::FindItem(long start, wxUIntPtr data)
|
||||
if (GetItemData(idx) == data)
|
||||
return idx;
|
||||
idx++;
|
||||
};
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
@ -1746,7 +1746,7 @@ long wxListCtrl::InsertItem(const wxListItem& info)
|
||||
// and remember that we have some now...
|
||||
m_hasAnyAttr = true;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
long rv = ListView_InsertItem(GetHwnd(), & item);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user