Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7852 → Rev 7853

/programs/cmm/lib/kfont.h
62,7 → 62,7
void ApplySmooth();
int WriteIntoWindow();
int WriteIntoWindowCenter();
void WriteIntoBuffer();
dword WriteIntoBuffer();
void ShowBuffer();
void ShowBufferPart();
} kfont;
241,7 → 241,7
}
}
 
:void KFONT::WriteIntoBuffer(int x,y,w,h; dword _background, _color; byte font_size; dword text1)
:dword KFONT::WriteIntoBuffer(int x,y,w,h; dword _background, _color; byte font_size; dword text1)
{
dword new_raw_size;
if(!text1)return;
273,7 → 273,7
if(bold)x+=math.ceil(size.pt/17);
text1++;
}
return;
return x;
}
 
:int KFONT::WriteIntoWindow(int x,y; dword _background, _color; byte font_size; dword text1)