forked from KolibriOS/kolibrios
HTMLv bug fix
git-svn-id: svn://kolibrios.org@3006 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
5b833a1058
commit
b208b80b45
@ -56,11 +56,11 @@ void main()
|
|||||||
int scroll_used=0;
|
int scroll_used=0;
|
||||||
|
|
||||||
mem_Init();
|
mem_Init();
|
||||||
if (load_dll2(libio, #libio_init,1)!=0) debug("Не удалось подключить библиотеку libio."w);
|
if (load_dll2(libio, #libio_init,1)!=0) debug("Не удалось подключить библиотеку libio"w);
|
||||||
if (load_dll2(libimg, #libimg_init,1)!=0) debug("Не удалось подключить библиотеку libimg."w);
|
if (load_dll2(libimg, #libimg_init,1)!=0) debug("Не удалось подключить библиотеку libimg"w);
|
||||||
if (load_dll2(boxlib, #edit_box_draw,0)!=0) debug("Не удалось подключить библиотеку boxlib."w);
|
if (load_dll2(boxlib, #edit_box_draw,0)!=0) debug("Не удалось подключить библиотеку boxlib"w);
|
||||||
load_dll2(#abox_lib, #boxlib_init,0);
|
load_dll2(#abox_lib, #boxlib_init,0);
|
||||||
if (load_dll2(libtruetype, #truetype,0)!=0) debug("Не удалось подключить библиотеку TrueType."w);
|
if (load_dll2(libtruetype, #truetype,0)!=0) {debug("Не удалось подключить библиотеку TrueType"w); use_truetype = 2;}
|
||||||
|
|
||||||
if (!URL) strcpy(#URL, "/sys/home.htm");
|
if (!URL) strcpy(#URL, "/sys/home.htm");
|
||||||
strcpy(#editURL, #URL);
|
strcpy(#editURL, #URL);
|
||||||
|
@ -120,6 +120,12 @@ void TWebBrowser::Scan(int id)
|
|||||||
else pre_text=0;
|
else pre_text=0;
|
||||||
break;
|
break;
|
||||||
case 005: //truetype
|
case 005: //truetype
|
||||||
|
if (use_truetype == 2)
|
||||||
|
{
|
||||||
|
debug("Не удалось подключить библиотеку TrueType");
|
||||||
|
debug("/rd/1/lib/truetype.obj не обнаружен или имеет неправильный формат");
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (use_truetype == 1) use_truetype=0; else use_truetype=1;
|
if (use_truetype == 1) use_truetype=0; else use_truetype=1;
|
||||||
break;
|
break;
|
||||||
case BACK:
|
case BACK:
|
||||||
|
Loading…
Reference in New Issue
Block a user