summaryrefslogtreecommitdiff
path: root/test/input.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2010-12-08 14:00:35 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2010-12-08 14:00:35 +0000
commit97b4b0c704aef8194ab0f5d814d39452d0b3221f (patch)
tree3c916fe9b80941338f730a440309066501dfbb80 /test/input.cxx
parentef831abaa73298d9648010d8aede52dc95fcaee1 (diff)
Fixed Compiling with mingw-w64 (STR #2308).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7978 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/input.cxx')
-rw-r--r--test/input.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/input.cxx b/test/input.cxx
index 35322c3f6..428a65cb1 100644
--- a/test/input.cxx
+++ b/test/input.cxx
@@ -65,7 +65,7 @@ void button_cb(Fl_Widget *,void *) {
void color_cb(Fl_Widget* button, void* v) {
Fl_Color c;
- switch ((long)v) {
+ switch ((fl_intptr_t)v) {
case 0: c = FL_BACKGROUND2_COLOR; break;
case 1: c = FL_SELECTION_COLOR; break;
default: c = FL_FOREGROUND_COLOR; break;