Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8424 → Rev 8425

/programs/cmm/browser/TWB/TWB.c
304,6 → 304,11
Paint();
NewLine();
list.count = draw_y;
 
DrawBuf.bufh = math.max(list.visible, draw_y);
debugval("DrawBuf.bufh", DrawBuf.bufh);
buf_data = realloc(buf_data, DrawBuf.bufh * DrawBuf.bufw * 4 + 8);
 
list.CheckDoesValuesOkey();
anchors.current = NULL;
custom_encoding = -1;
/programs/cmm/browser/WebView.c
41,7 → 41,7
// DATA //
// //
//===================================================//
char version[]="WebView 3.04";
char version[]="WebView 3.06";
 
#define DEFAULT_URL URL_SERVICE_HOMEPAGE
 
231,10 → 231,12
if (http_get_type==PAGE) {
history.add(http.cur_url);
cache.add(http.cur_url, http.content_pointer, http.content_received, PAGE);
LoadInternalPage(http.content_pointer, http.content_received);
free(http.content_pointer);
LoadInternalPage(cache.current_buf, cache.current_size);
}
else if (http_get_type==IMG) {
cache.add(cur_img_url, http.content_pointer, http.content_received, IMG);
free(http.content_pointer);
GetImg(false);
}
}
/programs/cmm/browser/cache.h
26,6 → 26,9
url.add(_url);
size.add(_size);
type.add(_type);
 
current_buf = data_pointer;
current_size = _size;
}
 
bool _cache::has(dword _link)