Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8425 → Rev 8424

/programs/cmm/browser/WebView.c
41,7 → 41,7
// DATA //
// //
//===================================================//
char version[]="WebView 3.06";
char version[]="WebView 3.04";
 
#define DEFAULT_URL URL_SERVICE_HOMEPAGE
 
231,12 → 231,10
if (http_get_type==PAGE) {
history.add(http.cur_url);
cache.add(http.cur_url, http.content_pointer, http.content_received, PAGE);
free(http.content_pointer);
LoadInternalPage(cache.current_buf, cache.current_size);
LoadInternalPage(http.content_pointer, http.content_received);
}
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/TWB/TWB.c
304,11 → 304,6
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/cache.h
26,9 → 26,6
url.add(_url);
size.add(_size);
type.add(_type);
 
current_buf = data_pointer;
current_size = _size;
}
 
bool _cache::has(dword _link)