Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4021 → Rev 4022

/programs/cmm/eolite/include/copypaste.h
13,13 → 13,17
cut_active = cut;
}
 
void copyf_Action(dword filename) {
void copyf_Draw_Progress(dword filename) {
DefineAndDrawWindow(Form.left+Form.width-200,Form.top+90,WIN_W,GetSkinHeight()+WIN_H-1,0x34,col_work,T_PASTE_WINDOW);
WriteText(5,8, 0x80, 0, T_PASTE_WINDOW_TEXT);
DrawBar(5, 26, WIN_W-10, 10, col_work);
WriteText(5,26, 0x80, 0, filename);
//pause(20);
if (CheckEvent()==evButton)
{
notify(T_CANCEL_PASTE);
ExitProcess();
}
}
 
 
void Paste()