Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4058 → Rev 4059

/programs/cmm/lib/copyf.h
18,8 → 18,11
if (isdir(from1))
return CopyFolder(from1, in1);
else
{
copyf_Draw_Progress(from1+strchr(from1, '/'));
return CopyFile(from1, in1);
}
}
 
:int CopyFile(dword copy_from3, copy_in3)
{
/programs/cmm/lib/list_box.h
6,6 → 6,8
int count, visible, first, current;
int current_temp;
void ClearList();
int KeyDown();
int KeyUp();
void SetSizes(int xx, yy, ww, hh, min_hh, line_hh);
int MouseScroll(dword scroll_state);
};
43,4 → 45,35
return 1;
}
return 0;
}
 
int llist::KeyDown()
{
if (current-first+1<visible)
{
if (current+1>=count) return -1;
current++;
}
else
{
if (visible+first>=count) return -1;
first++;
current++;
}
return 1;
}
 
int llist::KeyUp()
{
if (current>first)
{
current--;
}
else
{
if (first==0) return -1;
first--;
current--;
}
return 1;
}