Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7852 → Rev 7853

/programs/cmm/TWB/parse_tag.h
39,9 → 39,7
bool result = false;
if (!name) return false;
if (debug_mode) {
debugln(" ");
debugln(" ");
debug("tag: "); debugln(#name);
debug("\n\ntag: "); debugln(#name);
debug("params: "); debugln(#params);
debugln(" ");
}
/programs/cmm/browser/html/help_en.htm
3,8 → 3,12
<meta charset="uft">
<title>WebView Help</title>
</head>
<body><pre><h1>WebView Help</h1>
<body>
 
<h1>WebView Text-Based Browser</h1>
 
It is free and open-source. If you have any suggestions or want to help improving it please visit its topic at <a href="http://board.kolibrios.org/viewtopic.php?f=40&amp;t=1075">board.kolibrios.org</a><pre>
 
<b>Shortcut keys</b>
<font bg="#C7CEE4">[CTRL + N or CTRL + T]</font> New window
/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)