Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7755 → Rev 7754

/programs/cmm/TWB/TWB.c
260,8 → 260,7
DrawStyle();
NewLine();
list.count = draw_y;
list.CheckDoesValuesOkey();
anchors.current = NULL;
DrawPage();
}
//============================================================================================
bool TWebBrowser::CheckForLineBreak()
293,14 → 292,6
 
dword value;
 
if (value = tag.get_value_of("name=")) || (value = tag.get_value_of("id=")) {
anchors.add(value, draw_y);
if (anchors.current) && (streq(value, #anchors.current+1)) {
list.first = draw_y;
anchors.current = NULL;
}
}
 
if (tag.is("html")) {
t_html = tag.opened;
return;
320,6 → 311,9
if (!tag.opened) strcat(#line, "\" ");
return;
}
if (value = tag.get_value_of("name=")) || (value = tag.get_value_of("id=")) {
anchors.add(value, draw_y);
}
if (tag.is("body")) {
t_body = tag.opened;
if (value = tag.get_value_of("link=")) link_color_inactive = GetColor(value);