Subversion Repositories Kolibri OS

Rev

Rev 6059 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6059 Rev 6803
Line 29... Line 29...
29
	if (_y+label.size.pt > label.size.height) {
29
	if (_y+label.size.pt > label.size.height) {
30
		sprintf(#error_message, "'WriteTextIntoBuf _y overflow: H %d Y %d' -A", label.size.height, _y);
30
		sprintf(#error_message, "'WriteTextIntoBuf _y overflow: H %d Y %d' -A", label.size.height, _y);
31
		notify(#error_message);
31
		notify(#error_message);
32
		return;
32
		return;
33
	}
33
	}
34
	label.write_buf(_x, _y, list.w, label.size.height, 0xFFFFFF, _text_col, label.size.pt, _text_off);
34
	label.WriteIntoBuffer(_x, _y, list.w, label.size.height, 0xFFFFFF, _text_col, label.size.pt, _text_off);
35
	if (_y/list.item_h-list.first==list.visible) DrawPage();
35
	if (_y/list.item_h-list.first==list.visible) DrawPage();
36
}
36
}
Line 37... Line 37...
37
 
37