Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9536 → Rev 9537

/programs/cmm/eolite/include/copy_and_delete.h
124,7 → 124,6
int paste_elements_count = 0;
dword clipbuf;
dword path_offset;
dword copy_state_ex = 0;
clipbuf = Clipboard__GetSlotData(Clipboard__GetSlotCount()-1);
if (DSDWORD[clipbuf+4] != 3) return;
/programs/cmm/eolite/include/progress_dialog.h
47,8 → 47,11
}
copy_bar.frame_color = sc.work_graph;
if (copy_state == FILE_EXISTS) event_mode = #WaitEvent;
else event_mode = #CheckEvent;
if (copy_state == FILE_EXISTS) {
event_mode = #WaitEvent;
} else {
event_mode = #CheckEvent;
}
event_mode();
switch(EAX)
{
75,7 → 78,6
if (remember_choice.click(EAX+1)) {
is_remember = remember_choice.checked;
}
break;
}
break;
case evReDraw:
/programs/cmm/lib/copyf.h
14,11 → 14,6
FILE_SKIP,
};
 
enum {
MODE_NORMAL,
MODE_FORCE
};
 
#define WRITE_ERROR_DEBUG 0
#define WRITE_ERROR_NOTIFY 1
:int writing_error_channel = WRITE_ERROR_DEBUG;
/programs/cmm/lib/date.h
21,16 → 21,17
EDX = x<<16+y;
ESI = 0x90<<24+color;
ECX = EDI.date.day;
$int 0x40;
$int 64
EDX += 20<<16;
ECX = EDI.date.month;
$int 0x40;
$int 64
EDX += 20<<16;
EBX = 4<<16;
ECX = EDI.date.year;
$int 0x40;
$int 64
DrawBar(x+17,y+10,2,2,color);
DrawBar(x+37,y+10,2,2,color);
$add ebx, 20 << 16
$int 64
}
 
#endif