IDE: clean up

git-svn-id: trunk@42605 -
This commit is contained in:
mattias 2013-09-05 10:08:54 +00:00
parent d132cd455b
commit 69ec5e3d47

View File

@ -236,7 +236,6 @@ var
SrcView: TListView; SrcView: TListView;
DestPt: TPoint; DestPt: TPoint;
Ind, DestInd: integer; Ind, DestInd: integer;
szTemp: String;
Item: TListItem; Item: TListItem;
begin begin
lb := Sender as TListBox; lb := Sender as TListBox;
@ -268,6 +267,7 @@ begin
Item := SrcView.Items[Ind]; Item := SrcView.Items[Ind];
SrcView.Items.Delete(Ind); // delete the item that is being dragged SrcView.Items.Delete(Ind); // delete the item that is being dragged
// ToDo: insert item into this page in a temporary data // ToDo: insert item into this page in a temporary data
if Item=nil then ;
end; end;
inc(Ind); inc(Ind);
end; end;