summaryrefslogtreecommitdiff
path: root/src/Fl_win32.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2024-12-10 23:12:22 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2024-12-10 23:12:22 +0100
commit6784ae807cf327bc1026dd7efa0bf7f4dd501a06 (patch)
treece6aeacc71259b87df3d515c896493f49a3a80a6 /src/Fl_win32.cxx
parent5af62bc565b3493c9cef2bd7e3cf3bb82a4d3209 (diff)
Fix compiler warnings (VS 2019)
Found with warning level: /W3
Diffstat (limited to 'src/Fl_win32.cxx')
-rw-r--r--src/Fl_win32.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index a8fde1162..6ba193f3c 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -1609,7 +1609,7 @@ content key keyboard layout
} else {
Fl::e_text = ( (Fl::e_state & FL_SHIFT) ? plus_other_char_utf8 : (char*)"+" );
}
- Fl::e_length = strlen(Fl::e_text);
+ Fl::e_length = (int)strlen(Fl::e_text);
}
}
// end of processing of the +-containing key