Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8354 → Rev 8355

/programs/cmm/browser/TWB/TWB.c
124,7 → 124,7
style.tag_list.reset();
link_color_default = 0x0000FF;
link_color_active = 0xFF0000;
page_bg = 0xFFFFFF;
page_bg = 0xEBE8E9; //E0E3E3 EBE8E9
style.bg_color = page_bg;
DrawBuf.Fill(0, page_bg);
links.clear();
457,6 → 457,7
strlcpy(#img_path, value, sizeof(img_path)-1);
get_absolute_url(#img_path, history.current());
 
//if (check_is_the_adress_local(#img_path)) <== load local files
if (cache.has(#img_path))
{
img_decode stdcall (cache.current_buf, cache.current_size, 0);
/programs/cmm/browser/WebView.c
42,7 → 42,7
// DATA //
// //
//===================================================//
char version[]="WebView 2.8 BETA 3";
char version[]="WebView 2.8 BETA 4";
 
#define DEFAULT_URL URL_SERVICE_HOMEPAGE
 
451,7 → 451,6
{
if (http.stop()) pause(10);
prbar.value = 0;
DrawOmnibox();
}
 
//rewrite into
893,6 → 892,8
void SetOmniboxText(dword _text)
{
edit_box_set_text stdcall (#omnibox_edit, _text);
omnibox_edit.pos = omnibox_edit.flags = 0;
DrawOmnibox();
}
 
dword GetAbsoluteActiveURL()
/programs/cmm/browser/cache.h
48,6 → 48,7
url.drop();
data.drop();
size.drop();
type.drop();
current_buf = NULL;
current_size = NULL;
}