Fix MSVC warnings in test/fonts.cxx (issue #109)

This commit is contained in:
Albrecht Schlosser 2021-08-31 00:26:56 +02:00
parent c8c1f51db7
commit c91713fd88
1 changed files with 5 additions and 5 deletions

View File

@ -152,7 +152,7 @@ void add_point_cb(Fl_Widget *w, void *d)
{
unsigned char *fd = vec[current_char];
while (*fd) fd++;
*fd = (fl_intptr_t)(d);
*fd = (fl_uchar)(d);
w->parent()->redraw();
}
@ -285,12 +285,12 @@ void create_the_forms() {
// create the sample string
int n = 0;
strcpy(label, "Hello, world!\n");
int i = strlen(label);
int i = (int)strlen(label);
ulong c;
for (c = ' '+1; c < 127; c++) {
if (!(c&0x1f)) label[i++]='\n';
if (c=='@') label[i++]=c;
label[i++]=c;
if (!(c&0x1f)) label[i++] = '\n';
if (c == '@') label[i++] = '@';
label[i++] = (char)c;
}
label[i++] = '\n';
for (c = 0xA1; c < 0x600; c += 9) {