Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9609 → Rev 9610

/programs/develop/libraries/box_lib/trunk/tree_list.asm
293,10 → 293,9
add esi,tl_box_height ;esi = coord bottom border
call tl_draw_null_cursor ;áâ¨à ¥¬ ªãàá®à
pop esi
mov tl_cur_pos,eax
@@:
 
mov tl_cur_pos,eax
 
; if '+' or '-' press
call tl_get_cur_node_index ;eax = node index
cmp eax,2
1410,14 → 1409,14
align 4
proc tl_node_poi_get_info uses ebx ecx edx edi, tlist:dword, node_ind:dword
mov edi,[tlist]
mov ebx,dword[node_ind]
mov ebx,[node_ind]
inc ebx
 
;cycle to nodes
mov edx,tl_data_nodes
mov ecx,edx
add ecx,sizeof.TreeNode
lea ecx,[edx+sizeof.TreeNode]
@@:
call tl_iterat_next_all
call tl_iterat_next
cmp edx,ecx
jle @f
dec ebx