Patch from DRIGUS GmbH, improves TListView under WinCE

git-svn-id: trunk@26264 -
This commit is contained in:
sekelsenmat 2010-06-22 19:19:49 +00:00
parent 4396585f5d
commit 4d2431babc

View File

@ -408,7 +408,7 @@ begin
if not WSCheckHandleAllocated(ALV, 'BeginUpdate')
then Exit;
inherited BeginUpdate(ALV);
SendMessage(ALV.Handle,WM_SETREDRAW,WPARAM(False),0);
end;
class procedure TWinCEWSCustomListView.EndUpdate(const ALV: TCustomListView);
@ -416,7 +416,7 @@ begin
if not WSCheckHandleAllocated(ALV, 'EndUpdate')
then Exit;
inherited EndUpdate(ALV);
SendMessage(ALV.Handle,WM_SETREDRAW,WPARAM(True),0);
end;
class function TWinCEWSCustomListView.GetBoundingRect(const ALV: TCustomListView): TRect;